Open
Description
The doc said that:
Default values defined in a protobuf schema like this
syntax = "proto2";
message MessageType {
optional int32 result_per_page = 3 [default = 10];
}
are not applied; the table defaults are used instead of them.
But on recent Clickhouse versions (23-24) the defaults applied from Protobuf schema, not from create table statement.