Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

YQL-17646 Fix dqrun/yqlrun difference in bigdate tests #1503

Merged
merged 2 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/config/muted_ya.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ NUdf::TUnboxedValue UnpackFromChunkedBuffer(const TType* type, TChunkedInputBuff
case NUdf::EDataSlot::Uint16:
return NUdf::TUnboxedValuePod(UnpackData<Fast, ui16>(buf));
case NUdf::EDataSlot::Int32:
case NUdf::EDataSlot::Date32:
return NUdf::TUnboxedValuePod(UnpackData<Fast, i32>(buf));
case NUdf::EDataSlot::Uint32:
return NUdf::TUnboxedValuePod(UnpackData<Fast, ui32>(buf));
Expand Down Expand Up @@ -599,6 +600,7 @@ void PackImpl(const TType* type, TBuf& buffer, const NUdf::TUnboxedValuePod& val
PackData<Fast>(value.Get<ui16>(), buffer);
break;
case NUdf::EDataSlot::Int32:
case NUdf::EDataSlot::Date32:
PackData<Fast>(value.Get<i32>(), buffer);
break;
case NUdf::EDataSlot::Uint32:
Expand Down
Loading