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;
}
Aggregations