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