From 99436ab1dad935c04781fdf85ab3ef8e6a8c9cad Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Mon, 27 Jun 2022 17:46:09 +0000 Subject: [PATCH] Remove unneeded code. --- src/Interpreters/InterpreterSelectQuery.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Interpreters/InterpreterSelectQuery.cpp b/src/Interpreters/InterpreterSelectQuery.cpp index c5a38593ef5..9d28fdfcfd6 100644 --- a/src/Interpreters/InterpreterSelectQuery.cpp +++ b/src/Interpreters/InterpreterSelectQuery.cpp @@ -2254,11 +2254,6 @@ void InterpreterSelectQuery::executeFetchColumns(QueryProcessingStage::Enum proc table_aliases->setStepDescription("Add table aliases"); query_plan.addStep(std::move(table_aliases)); } - - if (processing_stage == QueryProcessingStage::FetchColumns && query_info.additional_filter_ast) - { - - } } void InterpreterSelectQuery::executeWhere(QueryPlan & query_plan, const ActionsDAGPtr & expression, bool remove_filter)