Delete filterPushDown.cpp

This commit is contained in:
Nikolai Kochetov 2021-02-08 22:10:27 +03:00 committed by GitHub
parent 00d5d28ddf
commit e0a806c180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +0,0 @@
#include <Processors/QueryPlan/Optimizations/Optimizations.h>
#include <Processors/QueryPlan/FilterStep.h>
namespace DB::QueryPlanOptimizations
{
size_t tryPushDownLimit(QueryPlan::Node * node, QueryPlan::Nodes &)
{
auto * filter_step = typeid_cast<FilterStep *>(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<const AddingConstColumnStep *>(child.get()))
{
}
}
}