diff --git a/ydb/core/kqp/executer_actor/kqp_executer_impl.h b/ydb/core/kqp/executer_actor/kqp_executer_impl.h index 63a25cc1bdf0..f11bc282b7b9 100644 --- a/ydb/core/kqp/executer_actor/kqp_executer_impl.h +++ b/ydb/core/kqp/executer_actor/kqp_executer_impl.h @@ -430,12 +430,14 @@ class TKqpExecuterBase : public TActor { auto now = TInstant::Now(); if (LastProgressStats + Request.ProgressStatsPeriod <= now) { auto progress = MakeHolder(); - auto& execStats = *progress->Record.MutableQueryStats()->AddExecutions(); - Stats->ExportExecStats(execStats); - for (ui32 txId = 0; txId < Request.Transactions.size(); ++txId) { - const auto& tx = Request.Transactions[txId].Body; - auto planWithStats = AddExecStatsToTxPlan(tx->GetPlan(), execStats); - execStats.AddTxPlansWithStats(planWithStats); + if (CollectFullStats(Request.StatsMode)) { + auto& execStats = *progress->Record.MutableQueryStats()->AddExecutions(); + Stats->ExportExecStats(execStats); + for (ui32 txId = 0; txId < Request.Transactions.size(); ++txId) { + const auto& tx = Request.Transactions[txId].Body; + auto planWithStats = AddExecStatsToTxPlan(tx->GetPlan(), execStats); + execStats.AddTxPlansWithStats(planWithStats); + } } this->Send(Target, progress.Release()); LastProgressStats = now;