aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/SqlEnterpriseFormatter/formatsavepoint.cpp
blob: 3f346799055e4792599d769ae05425273ade26f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "formatsavepoint.h"
#include "parser/ast/sqlitesavepoint.h"

FormatSavepoint::FormatSavepoint(SqliteSavepoint* savepoint) :
    savepoint(savepoint)
{
}

void FormatSavepoint::formatInternal()
{
    withKeyword("SAVEPOINT").withId(savepoint->name).withSemicolon();
}