1 | #include "duckdb/planner/binder.hpp" |
---|---|
2 | #include "duckdb/planner/tableref/bound_table_function.hpp" |
3 | |
4 | namespace duckdb { |
5 | |
6 | unique_ptr<LogicalOperator> Binder::CreatePlan(BoundTableFunction &ref) { |
7 | return std::move(ref.get); |
8 | } |
9 | |
10 | } // namespace duckdb |
11 |