Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikvas0 committed Jan 9, 2024
1 parent 2985d96 commit c61659a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ydb/core/kqp/session_actor/kqp_query_stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
namespace NKikimr::NKqp {

struct TKqpQueryStats {
ui64 DurationUs;
ui64 DurationUs = 0;
std::optional<TKqpStatsCompile> Compilation;

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

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

Expand Down

0 comments on commit c61659a

Please sign in to comment.