Search in sources :

Example 1 with DropUserDataType

use of org.h2.command.ddl.DropUserDataType in project h2database by h2database.

the class Parser method parseDropUserDataType.

private DropUserDataType parseDropUserDataType() {
    boolean ifExists = readIfExists(false);
    DropUserDataType command = new DropUserDataType(session);
    command.setTypeName(readUniqueIdentifier());
    ifExists = readIfExists(ifExists);
    command.setIfExists(ifExists);
    return command;
}
Also used : DropUserDataType(org.h2.command.ddl.DropUserDataType)

Aggregations

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