1 | #include "duckdb/parser/statement/create_statement.hpp" |
---|---|
2 | |
3 | namespace duckdb { |
4 | |
5 | CreateStatement::CreateStatement() : SQLStatement(StatementType::CREATE_STATEMENT) { |
6 | } |
7 | |
8 | CreateStatement::CreateStatement(const CreateStatement &other) : SQLStatement(other), info(other.info->Copy()) { |
9 | } |
10 | |
11 | unique_ptr<SQLStatement> CreateStatement::Copy() const { |
12 | return unique_ptr<CreateStatement>(new CreateStatement(*this)); |
13 | } |
14 | |
15 | } // namespace duckdb |
16 |