// check if the records are there
byte[] value = db.lookup(0, "hello".getBytes(), null).get();
assertEquals("world", new String(value));
value = db.lookup(1, "key".getBytes(), null).get();
assertEquals("value", new String(value));
// create and execute a second transaction
txn = dbMan.createTransaction();
txn.createDatabase("test2", 1);