Revert #1263 - ENH: Make Transaction API Fluid such that we can set multiple thing like batchSize and label in a fluid fashion #1276

This commit is contained in:
Rob Bygrave
2018-02-26 11:45:49 +13:00
parent 21182da793
commit 0e219a9bc6
10 changed files with 120 additions and 174 deletions
@@ -34,10 +34,10 @@ public class TestBatchInsertFlush extends BaseTestCase {
Transaction transaction = server.beginTransaction();
try {
transaction.setPersistCascade(false)
.setBatchSize(10)
.setBatch(PersistBatch.ALL)
.setLabel("TestBatchInsertFlush.no_cascade");
transaction.setPersistCascade(false);
transaction.setBatchSize(10);
transaction.setBatch(PersistBatch.ALL);
transaction.setLabel("TestBatchInsertFlush.no_cascade");
LoggedSqlCollector.start();