From 7c2af04df0e9a1b64eaac847a6df26ce90d6ff26 Mon Sep 17 00:00:00 2001 From: MrLolthe1st Date: Thu, 8 Feb 2024 08:49:42 +0000 Subject: [PATCH 1/2] YQL-16765: Fix skip for Tz* types --- ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp b/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp index d87d39a9ef81..c857a16ed4dc 100644 --- a/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp +++ b/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp @@ -803,7 +803,9 @@ class TYtCodecCgReader : public IYtCodecCgReader { case NUdf::TDataType::Id: case NUdf::TDataType::Id: case NUdf::TDataType::Id: - case NUdf::TDataType::Id: { + case NUdf::TDataType::Id: + case NUdf::TDataType::Id: + case NUdf::TDataType::Id: { CallInst::Create(module.getFunction("SkipVarData"), { buf }, "", Block_); break; } From 6286afd8f4bd2fcad9769dd9d6fd4619ff60afc6 Mon Sep 17 00:00:00 2001 From: MrLolthe1st Date: Thu, 8 Feb 2024 09:01:22 +0000 Subject: [PATCH 2/2] TzDate --- ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp b/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp index c857a16ed4dc..eb95a4a69bb1 100644 --- a/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp +++ b/ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp @@ -804,6 +804,7 @@ class TYtCodecCgReader : public IYtCodecCgReader { case NUdf::TDataType::Id: case NUdf::TDataType::Id: case NUdf::TDataType::Id: + case NUdf::TDataType::Id: case NUdf::TDataType::Id: case NUdf::TDataType::Id: { CallInst::Create(module.getFunction("SkipVarData"), { buf }, "", Block_);