From 4ffae801befd7fa41521ff263ac5d9f9198acff8 Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Wed, 18 Sep 2024 17:09:23 +0000 Subject: [PATCH] Fixing another test. --- src/Processors/QueryPlan/Serialization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Processors/QueryPlan/Serialization.cpp b/src/Processors/QueryPlan/Serialization.cpp index 53a0d337187..22457307493 100644 --- a/src/Processors/QueryPlan/Serialization.cpp +++ b/src/Processors/QueryPlan/Serialization.cpp @@ -552,7 +552,7 @@ static QueryPlanResourceHolder replaceReadingFromTable(QueryPlan::Node & node, Q { SelectQueryOptions options(QueryProcessingStage::FetchColumns); 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(); } else