Skip to content

Commit d0b724a

Browse files
authored
24-3-15-hotfix: ClickHouse Client optional type fix (#13815) (#13824)
1 parent cc0e3f8 commit d0b724a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/grpc_services/rpc_kh_describe.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class TKikhouseDescribeTableRPC : public TActorBootstrapped<TKikhouseDescribeTab
178178
auto* colMeta = Result.add_columns();
179179
colMeta->set_name(col.second.Name);
180180
auto& typeInfo = col.second.PType;
181-
ProtoFromTypeInfo(typeInfo, *colMeta->mutable_type());
181+
ProtoFromTypeInfo(typeInfo, *colMeta->mutable_type(), false);
182182

183183
if (col.second.KeyOrder == -1)
184184
continue;

0 commit comments

Comments
 (0)