//===----------------------------------------------------------------------===// // DuckDB // // duckdb/parser/statement/show_statement.hpp // // //===----------------------------------------------------------------------===// #pragma once #include "duckdb/parser/sql_statement.hpp" #include "duckdb/parser/parsed_data/show_select_info.hpp" namespace duckdb { class ShowStatement : public SQLStatement { public: static constexpr const StatementType TYPE = StatementType::SHOW_STATEMENT; public: ShowStatement(); unique_ptr info; protected: ShowStatement(const ShowStatement &other); public: unique_ptr Copy() const override; }; } // namespace duckdb