We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c09c5d commit 4b2a95cCopy full SHA for 4b2a95c
ydb/tools/query_replay_yt/query_compiler.cpp
@@ -587,6 +587,8 @@ class TReplayCompileActor: public TActorBootstrapped<TReplayCompileActor> {
587
}
588
589
590
+ QueryId = ReplayDetails["query_id"].GetStringSafe();
591
+
592
TKqpQuerySettings settings(queryType);
593
Query = std::make_unique<NKikimr::NKqp::TKqpQueryId>(
594
ReplayDetails["query_cluster"].GetStringSafe(),
@@ -660,6 +662,7 @@ class TReplayCompileActor: public TActorBootstrapped<TReplayCompileActor> {
660
662
private:
661
663
TActorId Owner;
664
TIntrusivePtr<TModuleResolverState> ModuleResolverState;
665
+ TString QueryId;
666
std::unique_ptr<TKqpQueryId> Query;
667
TGUCSettings::TPtr GUCSettings = std::make_shared<TGUCSettings>();
668
TKqpSettings KqpSettings;
0 commit comments