#include "formatsavepoint.h" #include "parser/ast/sqlitesavepoint.h" FormatSavepoint::FormatSavepoint(SqliteSavepoint* savepoint) : savepoint(savepoint) { } void FormatSavepoint::formatInternal() { withKeyword("SAVEPOINT").withId(savepoint->name).withSemicolon(); }