| 1 | #include "duckdb/parser/tableref/emptytableref.hpp" |
|---|---|
| 2 | #include "duckdb/planner/binder.hpp" |
| 3 | #include "duckdb/planner/tableref/bound_dummytableref.hpp" |
| 4 | |
| 5 | using namespace duckdb; |
| 6 | using namespace std; |
| 7 | |
| 8 | unique_ptr<BoundTableRef> Binder::Bind(EmptyTableRef &ref) { |
| 9 | return make_unique<BoundEmptyTableRef>(GenerateTableIndex()); |
| 10 | } |
| 11 |