Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikvas0 committed Jan 21, 2024
1 parent 561fc4d commit 023efe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ydb/core/kqp/session_actor/kqp_query_stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ struct TKqpQueryStats {
std::optional<TKqpStatsCompile> Compilation;

ui64 WorkerCpuTimeUs = 0;
ui64 ReadSetsCount;
ui64 MaxShardProgramSize;
ui64 MaxShardReplySize;
ui64 ReadSetsCount = 0;
ui64 MaxShardProgramSize = 0;
ui64 MaxShardReplySize = 0;

TVector<NYql::NDqProto::TDqExecutionStats> Executions;

Expand Down

0 comments on commit 023efe7

Please sign in to comment.