| 1 | #include "duckdb/planner/binder.hpp" |
|---|---|
| 2 | #include "duckdb/planner/operator/logical_dummy_scan.hpp" |
| 3 | #include "duckdb/planner/tableref/bound_dummytableref.hpp" |
| 4 | |
| 5 | namespace duckdb { |
| 6 | |
| 7 | unique_ptr<LogicalOperator> Binder::CreatePlan(BoundEmptyTableRef &ref) { |
| 8 | return make_uniq<LogicalDummyScan>(args&: ref.bind_index); |
| 9 | } |
| 10 | |
| 11 | } // namespace duckdb |
| 12 |