blob: 5ce474f63e0e973ca1ce12047a92d918f0c6f71c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "formatsavepoint.h"
#include "parser/ast/sqlitesavepoint.h"
FormatSavepoint::FormatSavepoint(SqliteSavepoint* savepoint) :
savepoint(savepoint)
{
}
void FormatSavepoint::formatInternal()
{
handleExplainQuery(savepoint);
withKeyword("SAVEPOINT").withId(savepoint->name).withSemicolon();
}
|