diff options
author | nadya02 <[email protected]> | 2025-03-12 17:21:00 +0300 |
---|---|---|
committer | nadya02 <[email protected]> | 2025-03-12 17:45:18 +0300 |
commit | b7fc751cb2cc05de3eab8e775ef415c646d3049e (patch) | |
tree | 36a8a5004bd4441bcec8c4171d4e660046ce110e | |
parent | e168b9c40d0c681bff53af1f3cfadf912278e4ab (diff) |
YT-24433: Support json in arrow writer
* Changelog entry
Type: fix
Component: proxy
Support json in arrow writer.
commit_hash:ce6828e0a8040db28206bbe4eab4db6a1854a24b
-rw-r--r-- | yt/yt/library/formats/arrow_writer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt/yt/library/formats/arrow_writer.cpp b/yt/yt/library/formats/arrow_writer.cpp index c958f14140d..377ecc8634a 100644 --- a/yt/yt/library/formats/arrow_writer.cpp +++ b/yt/yt/library/formats/arrow_writer.cpp @@ -148,6 +148,7 @@ std::tuple<org::apache::arrow::flatbuf::Type, flatbuffers::Offset<void>> Seriali .Union()); case ESimpleLogicalValueType::Utf8: + case ESimpleLogicalValueType::Json: return std::tuple( org::apache::arrow::flatbuf::Type_Utf8, org::apache::arrow::flatbuf::CreateUtf8(*flatbufBuilder) |