//===----------------------------------------------------------------------===// // DuckDB // // duckdb/parser/statement/export_statement.hpp // // //===----------------------------------------------------------------------===// #pragma once #include "duckdb/parser/parsed_expression.hpp" #include "duckdb/parser/sql_statement.hpp" #include "duckdb/parser/parsed_data/copy_info.hpp" namespace duckdb { class ExportStatement : public SQLStatement { public: static constexpr const StatementType TYPE = StatementType::EXPORT_STATEMENT; public: explicit ExportStatement(unique_ptr info); unique_ptr info; string database; protected: ExportStatement(const ExportStatement &other); public: unique_ptr Copy() const override; }; } // namespace duckdb