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