//===----------------------------------------------------------------------===// // DuckDB // // duckdb/parser/statement/prepare_statement.hpp // // //===----------------------------------------------------------------------===// #pragma once #include "duckdb/parser/parsed_expression.hpp" #include "duckdb/parser/sql_statement.hpp" namespace duckdb { class PrepareStatement : public SQLStatement { public: static constexpr const StatementType TYPE = StatementType::PREPARE_STATEMENT; public: PrepareStatement(); unique_ptr statement; string name; protected: PrepareStatement(const PrepareStatement &other); public: unique_ptr Copy() const override; }; } // namespace duckdb