We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84db424 commit 17ee0c0Copy full SHA for 17ee0c0
ydb/core/kqp/runtime/kqp_write_table.cpp
@@ -305,7 +305,8 @@ class TRowBuilder {
305
if (cellInfo.Type.GetTypeId() == NScheme::NTypeIds::Pg) {
306
return cellInfo.PgBinaryValue.size();
307
}
308
- return cellInfo.Value.AsStringRef().Size();
+ const auto s = cellInfo.Value.AsStringRef().Size();
309
+ return TCell::CanInline(s) ? 0 : s;
310
311
312
TCharVectorPtr Allocate(size_t size) {
0 commit comments