diff --git a/src/Processors/QueryPlan/Optimizations/filterPushDown.cpp b/src/Processors/QueryPlan/Optimizations/filterPushDown.cpp deleted file mode 100644 index 0d651897bf8..00000000000 --- a/src/Processors/QueryPlan/Optimizations/filterPushDown.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include -#include - -namespace DB::QueryPlanOptimizations -{ - -size_t tryPushDownLimit(QueryPlan::Node * node, QueryPlan::Nodes &) -{ - auto * filter_step = typeid_cast(node->step.get()); - if (!filter_step) - return 0; - - QueryPlan::Node * child_node = node->children.front(); - auto & child = child_node->step; - - if (const auto * adding_const_column = typeid_cast(child.get())) - { - - } -} - -}