Skip to content

Commit e8002d3

Browse files
authored
switch to i64 and ui64 (#15159)
1 parent 6c60d46 commit e8002d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ydb/library/yql/dq/runtime/dq_output_consumer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,14 @@ struct TColumnShardHashV1 {
168168
case NYql::NProto::Interval64:
169169
case NYql::NProto::Datetime64:
170170
case NYql::NProto::Timestamp64: {
171-
auto value = uv.template Get<int64_t>();
171+
auto value = uv.template Get<i64>();
172172
HashCalcer.Update(reinterpret_cast<const ui8*>(&value), sizeof(value));
173173
break;
174174
}
175175
case NYql::NProto::Uint64:
176176
case NYql::NProto::Timestamp:
177177
case NYql::NProto::TzTimestamp: {
178-
auto value = uv.template Get<uint64_t>();
178+
auto value = uv.template Get<ui64>();
179179
HashCalcer.Update(reinterpret_cast<const ui8*>(&value), sizeof(value));
180180
break;
181181
}
@@ -874,4 +874,4 @@ IDqOutputConsumer::TPtr CreateOutputBroadcastConsumer(TVector<IDqOutput::TPtr>&&
874874
return MakeIntrusive<TDqOutputBroadcastConsumer>(std::move(outputs), outputWidth);
875875
}
876876

877-
} // namespace NYql::NDq
877+
} // namespace NYql::NDq

0 commit comments

Comments
 (0)