1 | #include "duckdb/catalog/catalog.hpp" |
---|---|
2 | #include "duckdb/parser/expression/constant_expression.hpp" |
3 | #include "duckdb/parser/statement/insert_statement.hpp" |
4 | #include "duckdb/parser/query_node/select_node.hpp" |
5 | #include "duckdb/planner/binder.hpp" |
6 | #include "duckdb/parser/statement/relation_statement.hpp" |
7 | |
8 | using namespace std; |
9 | |
10 | namespace duckdb { |
11 | |
12 | BoundStatement Binder::Bind(RelationStatement &stmt) { |
13 | return stmt.relation->Bind(*this); |
14 | } |
15 | |
16 | } // namespace duckdb |
17 |