1 | #include "duckdb/parser/statement/vacuum_statement.hpp" |
---|---|
2 | #include "duckdb/parser/transformer.hpp" |
3 | |
4 | using namespace duckdb; |
5 | using namespace std; |
6 | |
7 | unique_ptr<VacuumStatement> Transformer::TransformVacuum(PGNode *node) { |
8 | auto stmt = reinterpret_cast<PGVacuumStmt *>(node); |
9 | assert(stmt); |
10 | auto result = make_unique<VacuumStatement>(); |
11 | return result; |
12 | } |
13 |