aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/SqlEnterpriseFormatter/formatvacuum.cpp
blob: 29b95e42173359f8504a3a33a1615ab48b4ed203 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "formatvacuum.h"

FormatVacuum::FormatVacuum(SqliteVacuum* vacuum) :
    vacuum(vacuum)
{
}

void FormatVacuum::formatInternal()
{
    withKeyword("VACUUM").withSemicolon();
}