use of org.h2.command.dml.TransactionCommand in project h2database by h2database.
the class Parser method parseSavepoint.
private TransactionCommand parseSavepoint() {
TransactionCommand command = new TransactionCommand(session, CommandInterface.SAVEPOINT);
command.setSavepointName(readUniqueIdentifier());
return command;
}
Aggregations