1#include "duckdb/planner/binder.hpp"
2#include "duckdb/planner/operator/logical_table_function.hpp"
3#include "duckdb/planner/tableref/bound_table_function.hpp"
4
5using namespace duckdb;
6using namespace std;
7
8unique_ptr<LogicalOperator> Binder::CreatePlan(BoundTableFunction &ref) {
9 return make_unique<LogicalTableFunction>(ref.function, ref.bind_index, move(ref.bind_data), move(ref.parameters),
10 ref.return_types, ref.names);
11}
12