use of org.h2.command.ddl.DeallocateProcedure in project h2database by h2database.
the class Parser method parseDeallocate.
private DeallocateProcedure parseDeallocate() {
readIf("PLAN");
String procedureName = readAliasIdentifier();
DeallocateProcedure command = new DeallocateProcedure(session);
command.setProcedureName(procedureName);
return command;
}
Aggregations