Fixing another test.

This commit is contained in:
Nikolai Kochetov 2024-09-18 17:09:23 +00:00
parent de30ec1d1d
commit 4ffae801be

View File

@ -552,7 +552,7 @@ static QueryPlanResourceHolder replaceReadingFromTable(QueryPlan::Node & node, Q
{ {
SelectQueryOptions options(QueryProcessingStage::FetchColumns); SelectQueryOptions options(QueryProcessingStage::FetchColumns);
options.ignore_rename_columns = true; options.ignore_rename_columns = true;
InterpreterSelectQueryAnalyzer interpreter(wrapWithUnion(std::move(query)), context, options, column_names); InterpreterSelectQueryAnalyzer interpreter(wrapWithUnion(std::move(query)), context, options);
reading_plan = std::move(interpreter).extractQueryPlan(); reading_plan = std::move(interpreter).extractQueryPlan();
} }
else else