use of org.h2.command.ddl.TruncateTable in project h2database by h2database.
the class Parser method parseTruncate.
private Prepared parseTruncate() {
read("TABLE");
Table table = readTableOrView();
TruncateTable command = new TruncateTable(session);
command.setTable(table);
return command;
}
Aggregations