use of org.h2.command.ddl.DropAggregate in project h2database by h2database.
the class Parser method parseDropAggregate.
private DropAggregate parseDropAggregate() {
boolean ifExists = readIfExists(false);
DropAggregate command = new DropAggregate(session);
command.setName(readUniqueIdentifier());
ifExists = readIfExists(ifExists);
command.setIfExists(ifExists);
return command;
}
Aggregations