1 | //===----------------------------------------------------------------------===// |
---|---|
2 | // DuckDB |
3 | // |
4 | // duckdb/parser/statement/execute_statement.hpp |
5 | // |
6 | // |
7 | //===----------------------------------------------------------------------===// |
8 | |
9 | #pragma once |
10 | |
11 | #include "duckdb/parser/parsed_expression.hpp" |
12 | #include "duckdb/parser/sql_statement.hpp" |
13 | #include "duckdb/common/vector.hpp" |
14 | |
15 | namespace duckdb { |
16 | |
17 | class ExecuteStatement : public SQLStatement { |
18 | public: |
19 | static constexpr const StatementType TYPE = StatementType::EXECUTE_STATEMENT; |
20 | |
21 | public: |
22 | ExecuteStatement(); |
23 | |
24 | string name; |
25 | vector<unique_ptr<ParsedExpression>> values; |
26 | |
27 | protected: |
28 | ExecuteStatement(const ExecuteStatement &other); |
29 | |
30 | public: |
31 | unique_ptr<SQLStatement> Copy() const override; |
32 | }; |
33 | } // namespace duckdb |
34 |