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