diff options
author | mrlolthe1st <mrlolthe1st@yandex-team.com> | 2024-12-27 17:32:09 +0300 |
---|---|---|
committer | mrlolthe1st <mrlolthe1st@yandex-team.com> | 2024-12-27 18:03:27 +0300 |
commit | 0ea6d76874de893e82530d945458f79df9a95f30 (patch) | |
tree | 4950f825874abf4e217b5f61e304c6f87090116f /yt | |
parent | 9120175d41f59e3831c1f47b595a8ac94c782403 (diff) | |
download | ydb-0ea6d76874de893e82530d945458f79df9a95f30.tar.gz |
BlockReader: UTF8 type
BlockReader: UTF8 type
commit_hash:d5c5325d3fed768a18effdcf903e83bd88671a3d
Diffstat (limited to 'yt')
-rw-r--r-- | yt/yql/providers/yt/codec/yt_arrow_converter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt/yql/providers/yt/codec/yt_arrow_converter.cpp b/yt/yql/providers/yt/codec/yt_arrow_converter.cpp index f9cd95019a..11b512ce2b 100644 --- a/yt/yql/providers/yt/codec/yt_arrow_converter.cpp +++ b/yt/yql/providers/yt/codec/yt_arrow_converter.cpp @@ -686,6 +686,7 @@ std::unique_ptr<IYtColumnConverter> MakeYtColumnConverter(TType* type, const NUd case NUdf::EDataSlot::Yson: // Yson there is top-level optional // YT type for Yson, Json, String is arrow::Type::BINARY, but yql type is arrow::Type::String return std::make_unique<TTopLevelSimpleCastConverter<arrow::Type::BINARY>>(std::move(settings)); + case NUdf::EDataSlot::Utf8: case NUdf::EDataSlot::Double: case NUdf::EDataSlot::Int8: case NUdf::EDataSlot::Uint8: |