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