423424425426427428429430431432433
table = session.getTable(tempTableName); } catch (IOException e) { // table does not exist, its ok. return null; } table.truncate(); return null; } }); } finally { session.dispose();
276277278279280281282283284285286
LOGGER.fine("truncating table " + typeName); session.issue(new Command<Void>() { @Override public Void execute(ISession session, SeConnection connection) throws SeException, IOException { table.truncate(); return null; } }); } }
352353354355356357358359360361362