String tablename = parseFromClause(tableSource);
// check if table exists and get Table info
metaEventOperation.checkAndGetTable(tablename, true);
tableNames.add(tablename);
}
TruncateTablePlan truncateTable = new TruncateTablePlan(tableNames);
context.setPlan(truncateTable);
LOG.debug("TruncateTablePlan " + truncateTable.toString());
}