Skip to content

Commit 7c2af04

Browse files
committed
YQL-16765: Fix skip for Tz* types
1 parent 8cf960f commit 7c2af04

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ydb/library/yql/providers/yt/codec/codegen/yt_codec_cg.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,9 @@ class TYtCodecCgReader : public IYtCodecCgReader {
803803
case NUdf::TDataType<NUdf::TJson>::Id:
804804
case NUdf::TDataType<NUdf::TYson>::Id:
805805
case NUdf::TDataType<NUdf::TUuid>::Id:
806-
case NUdf::TDataType<NUdf::TJsonDocument>::Id: {
806+
case NUdf::TDataType<NUdf::TJsonDocument>::Id:
807+
case NUdf::TDataType<NUdf::TTzDatetime>::Id:
808+
case NUdf::TDataType<NUdf::TTzTimestamp>::Id: {
807809
CallInst::Create(module.getFunction("SkipVarData"), { buf }, "", Block_);
808810
break;
809811
}

0 commit comments

Comments
 (0)