diff options
author | uzhastik <uzhas@ydb.tech> | 2025-02-27 23:18:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-27 20:18:34 +0000 |
commit | e8002d3a737240cf8751a577f634e7b73b68ada1 (patch) | |
tree | 8072b0a310537be175e9c200db56ec4e1211b7aa | |
parent | 6c60d4658852223764506152b9425d28642b71e0 (diff) | |
download | ydb-e8002d3a737240cf8751a577f634e7b73b68ada1.tar.gz |
switch to i64 and ui64 (#15159)
-rw-r--r-- | ydb/library/yql/dq/runtime/dq_output_consumer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ydb/library/yql/dq/runtime/dq_output_consumer.cpp b/ydb/library/yql/dq/runtime/dq_output_consumer.cpp index a072fd46f6..5121ef99b4 100644 --- a/ydb/library/yql/dq/runtime/dq_output_consumer.cpp +++ b/ydb/library/yql/dq/runtime/dq_output_consumer.cpp @@ -168,14 +168,14 @@ struct TColumnShardHashV1 { case NYql::NProto::Interval64: case NYql::NProto::Datetime64: case NYql::NProto::Timestamp64: { - auto value = uv.template Get<int64_t>(); + auto value = uv.template Get<i64>(); HashCalcer.Update(reinterpret_cast<const ui8*>(&value), sizeof(value)); break; } case NYql::NProto::Uint64: case NYql::NProto::Timestamp: case NYql::NProto::TzTimestamp: { - auto value = uv.template Get<uint64_t>(); + auto value = uv.template Get<ui64>(); HashCalcer.Update(reinterpret_cast<const ui8*>(&value), sizeof(value)); break; } @@ -874,4 +874,4 @@ IDqOutputConsumer::TPtr CreateOutputBroadcastConsumer(TVector<IDqOutput::TPtr>&& return MakeIntrusive<TDqOutputBroadcastConsumer>(std::move(outputs), outputWidth); } -} // namespace NYql::NDq
\ No newline at end of file +} // namespace NYql::NDq |