diff options
author | hor911 <hor911@ydb.tech> | 2023-01-31 22:25:22 +0300 |
---|---|---|
committer | hor911 <hor911@ydb.tech> | 2023-01-31 22:25:22 +0300 |
commit | 90d8240433b0513f5b61e09aa266404c7968a0f4 (patch) | |
tree | 50dd9d084996d134954a33a852bca54ccd22e3ac | |
parent | bbc27c3fbad3ce6cbd9aa2f5b652df89ca861bab (diff) | |
download | ydb-90d8240433b0513f5b61e09aa266404c7968a0f4.tar.gz |
Correct precompute index
-rw-r--r-- | ydb/core/yq/libs/actors/run_actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/yq/libs/actors/run_actor.cpp b/ydb/core/yq/libs/actors/run_actor.cpp index f2ec084fe5..d93cd6503c 100644 --- a/ydb/core/yq/libs/actors/run_actor.cpp +++ b/ydb/core/yq/libs/actors/run_actor.cpp @@ -1090,7 +1090,7 @@ private: } TString statistics; - if (SaveAndPackStatistics("Precompute=" + ToString(DqGraphIndex), result.metric(), statistics)) { + if (SaveAndPackStatistics("Precompute=" + ToString(it->second.Index), result.metric(), statistics)) { QueryStateUpdateRequest.set_statistics(statistics); } |