/*
* Do two checkpoints here so that the INs that make up this new
* tree are not in the redo part of the log.
*/
CheckpointConfig ckptConfig = new CheckpointConfig();
ckptConfig.setForce(true);
env.checkpoint(ckptConfig);
env.checkpoint(ckptConfig);
txn = env.beginTransaction(null, null);
insertData(txn, numRecs, numRecs + 1, expectedData, 1, true, NUM_DBS);
txn.commit();