113114115116117118119120121122123
public PersistentStore getSubqueryRowStore(TableBase table) { PersistentStore store = persistentStoreCollection.getStore(table); store.removeAll(); return store; } public PersistentStore getNewResultRowStore(TableBase table,
508509510511512513514515516517518
public void clearAllData(Session session) { PersistentStore store = session.sessionData.getRowStore(this); store.removeAll(); } public void clearAllData(PersistentStore store) { store.removeAll(); }
13461347134813491350135113521353135413551356
for (int i = 0; i < tables.length; i++) { Table table = tables[i]; PersistentStore store = table.getRowStore(session); store.removeAll(); if (restartIdentity && table.identitySequence != null) { table.identitySequence.reset(); } }
553554555556557558559560561562563
public void clearAllData(Session session) { PersistentStore store = getRowStore(session); store.removeAll(); } public void clearAllData(PersistentStore store) { store.removeAll(); }
510511512513514515516517518519520
275276277278279280281282283284285
for (int i = 0; i < tables.length; i++) { Table table = tables[i]; PersistentStore store = table.getRowStore(session); store.removeAll(); if (restartIdentity && table.identitySequence != null) { table.identitySequence.reset(); }
9596979899100101102103104105
102103104105106107108109110111112
486487488489490491492493494495496