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
8using namespace std;
9
10namespace duckdb {
11
12BoundStatement Binder::Bind(RelationStatement &stmt) {
13 return stmt.relation->Bind(*this);
14}
15
16} // namespace duckdb
17