From c9857036b04864f6d1297c2bf7d84d5634a7b337 Mon Sep 17 00:00:00 2001 From: Aleksandr Mikishev Date: Thu, 1 Feb 2024 10:27:07 +0300 Subject: [PATCH 1/2] Fix dq/yql difference in bigdate tests --- .../yql/minikql/computation/mkql_computation_node_pack.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ydb/library/yql/minikql/computation/mkql_computation_node_pack.cpp b/ydb/library/yql/minikql/computation/mkql_computation_node_pack.cpp index 19edfec82b4d..943920364611 100644 --- a/ydb/library/yql/minikql/computation/mkql_computation_node_pack.cpp +++ b/ydb/library/yql/minikql/computation/mkql_computation_node_pack.cpp @@ -300,6 +300,7 @@ NUdf::TUnboxedValue UnpackFromChunkedBuffer(const TType* type, TChunkedInputBuff case NUdf::EDataSlot::Uint16: return NUdf::TUnboxedValuePod(UnpackData(buf)); case NUdf::EDataSlot::Int32: + case NUdf::EDataSlot::Date32: return NUdf::TUnboxedValuePod(UnpackData(buf)); case NUdf::EDataSlot::Uint32: return NUdf::TUnboxedValuePod(UnpackData(buf)); @@ -599,6 +600,7 @@ void PackImpl(const TType* type, TBuf& buffer, const NUdf::TUnboxedValuePod& val PackData(value.Get(), buffer); break; case NUdf::EDataSlot::Int32: + case NUdf::EDataSlot::Date32: PackData(value.Get(), buffer); break; case NUdf::EDataSlot::Uint32: From c507fea91dea0eb87924770cf97c8b0d0069c50e Mon Sep 17 00:00:00 2001 From: Aleksandr Mikishev Date: Thu, 1 Feb 2024 15:00:40 +0300 Subject: [PATCH 2/2] Unmute dq_file tests --- .github/config/muted_ya.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/config/muted_ya.txt b/.github/config/muted_ya.txt index 426c08952518..f99f3dc6b7bf 100644 --- a/.github/config/muted_ya.txt +++ b/.github/config/muted_ya.txt @@ -53,7 +53,6 @@ ydb/library/actors/http/ut sole* ydb/library/yql/providers/generic/connector/tests sole* ydb/library/yql/providers/generic/connector/tests test.py.* ydb/library/yql/sql/pg/ut PgSqlParsingAutoparam.AutoParamValues_DifferentTypes -ydb/library/yql/tests/sql/dq_file/part* * ydb/public/sdk/cpp/client/ydb_federated_topic/ut BasicUsage.SimpleHandlers ydb/public/sdk/cpp/client/ydb_persqueue_core/ut/with_offset_ranges_mode_ut RetryPolicy.RetryWithBatching ydb/public/sdk/cpp/client/ydb_topic/ut BasicUsage.ConflictingWrites