#include "planner/operator/logical_table_function_call.h"
#include "processor/plan_mapper.h"
using namespace lbug::planner;
using namespace lbug::common;
namespace lbug {
namespace processor {
std::unique_ptr<PhysicalOperator> PlanMapper::mapTableFunctionCall(
const LogicalOperator* logicalOperator) {
auto& call = logicalOperator->constCast<LogicalTableFunctionCall>();
auto getPhysicalPlanFunc = call.getTableFunc().getPhysicalPlanFunc;
DASSERT(getPhysicalPlanFunc);
auto res = getPhysicalPlanFunc(this, logicalOperator);
logicalOpToPhysicalOpMap.insert({logicalOperator, res.get()});
return res;
}
} }