File tree 1 file changed +3
-3
lines changed
ydb/library/yql/dq/runtime
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -168,14 +168,14 @@ struct TColumnShardHashV1 {
168
168
case NYql::NProto::Interval64:
169
169
case NYql::NProto::Datetime64:
170
170
case NYql::NProto::Timestamp64: {
171
- auto value = uv.template Get <int64_t >();
171
+ auto value = uv.template Get <i64 >();
172
172
HashCalcer.Update (reinterpret_cast <const ui8*>(&value), sizeof (value));
173
173
break ;
174
174
}
175
175
case NYql::NProto::Uint64:
176
176
case NYql::NProto::Timestamp:
177
177
case NYql::NProto::TzTimestamp: {
178
- auto value = uv.template Get <uint64_t >();
178
+ auto value = uv.template Get <ui64 >();
179
179
HashCalcer.Update (reinterpret_cast <const ui8*>(&value), sizeof (value));
180
180
break ;
181
181
}
@@ -874,4 +874,4 @@ IDqOutputConsumer::TPtr CreateOutputBroadcastConsumer(TVector<IDqOutput::TPtr>&&
874
874
return MakeIntrusive<TDqOutputBroadcastConsumer>(std::move (outputs), outputWidth);
875
875
}
876
876
877
- } // namespace NYql::NDq
877
+ } // namespace NYql::NDq
You can’t perform that action at this time.
0 commit comments