aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/SqlEnterpriseFormatter/formatvacuum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/SqlEnterpriseFormatter/formatvacuum.cpp')
-rw-r--r--Plugins/SqlEnterpriseFormatter/formatvacuum.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/Plugins/SqlEnterpriseFormatter/formatvacuum.cpp b/Plugins/SqlEnterpriseFormatter/formatvacuum.cpp
new file mode 100644
index 0000000..29b95e4
--- /dev/null
+++ b/Plugins/SqlEnterpriseFormatter/formatvacuum.cpp
@@ -0,0 +1,11 @@
+#include "formatvacuum.h"
+
+FormatVacuum::FormatVacuum(SqliteVacuum* vacuum) :
+ vacuum(vacuum)
+{
+}
+
+void FormatVacuum::formatInternal()
+{
+ withKeyword("VACUUM").withSemicolon();
+}