Search in sources :

Example 1 with DropAggregate

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;
}
Also used : DropAggregate(org.h2.command.ddl.DropAggregate)

Aggregations

DropAggregate (org.h2.command.ddl.DropAggregate)1