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