aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/SqlEnterpriseFormatter/formatvacuum.cpp
blob: 8cbff571d35e9b1a5e5f041584c2884ad97c0561 (plain) (blame)
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();
}