Search in sources :

Example 1 with DeallocateProcedure

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

Aggregations

DeallocateProcedure (org.h2.command.ddl.DeallocateProcedure)1 ValueString (org.h2.value.ValueString)1