1 2 3 4 5 6 7 8 9 10 11 12 13
#include "formatvacuum.h" #include "parser/ast/sqlitevacuum.h" FormatVacuum::FormatVacuum(SqliteVacuum* vacuum) : vacuum(vacuum) { } void FormatVacuum::formatInternal() { handleExplainQuery(vacuum); withKeyword("VACUUM").withSemicolon(); }