Skip to content

Commit 3441079

Browse files
authored
replay fixes (ignore ast query type as it misses parameters and avoid symbols duplication with external so) (#14230)
1 parent 6c1b3bc commit 3441079

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ydb/tools/query_replay_yt/common_deps.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ SET(YDB_REPLAY_PEERDIRS
8484
yql/essentials/udfs/common/string
8585
yql/essentials/udfs/common/top
8686
yql/essentials/udfs/common/topfreq
87-
yql/essentials/udfs/common/unicode_base
8887
yql/essentials/udfs/common/url_base
8988
yql/essentials/udfs/common/yson2
9089
yql/essentials/udfs/logs/dsv

ydb/tools/query_replay_yt/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class TQueryReplayMapper
141141

142142
THolder<TQueryReplayEvents::TEvCompileResponse> RunReplay(NJson::TJsonValue&& json) {
143143
TString queryType = json["query_type"].GetStringSafe();
144-
if (queryType == "QUERY_TYPE_AST_SCAN") {
144+
if (queryType == "QUERY_TYPE_AST_SCAN" || queryType == "QUERY_TYPE_AST_DML") {
145145
return nullptr;
146146
}
147147

0 commit comments

Comments
 (0)