temporaryTable = createTemporaryTable(conn);
if (!temporaryTable.isCreated()) {
createTemporaryTable(temporaryTable);
}
}
TransactionTable table = createTransactionTable();
table.setIdSequence(ids);
table.setSailChangedEvent(sailChangedEvent);
table.setQueue(batchQueue);
table.setTripleTable(predicate);
table.setTemporaryTable(temporaryTable);
table.setConnection(conn);
table.setBatchSize(getBatchSize());
return table;
}