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