diff options
| author | aneporada <[email protected]> | 2023-09-17 20:57:56 +0300 |
|---|---|---|
| committer | aneporada <[email protected]> | 2023-09-17 21:36:27 +0300 |
| commit | 94f8206d1e8df48d49de163a4347b1feab48a7e0 (patch) | |
| tree | 73d113dd4294a010ad397c45a6a72685d8c37762 | |
| parent | 2f9af400611963e6724a2ca3df319c578c98790a (diff) | |
Fix tuple builder from buffer
| -rw-r--r-- | ydb/library/yql/public/udf/arrow/block_builder.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/library/yql/public/udf/arrow/block_builder.h b/ydb/library/yql/public/udf/arrow/block_builder.h index 08831f74a31..0605063b8e2 100644 --- a/ydb/library/yql/public/udf/arrow/block_builder.h +++ b/ydb/library/yql/public/udf/arrow/block_builder.h @@ -843,6 +843,7 @@ public: if (!input.PopChar()) { return DoAdd(TBlockItem{}); } + NullBuilder->UnsafeAppend(1); } for (ui32 i = 0; i < Children.size(); ++i) { |
