// run test
getTransactionContainter().runTransaction(userTxn);
// now verify the results
AbstractQueryTest test = new QueryExecution(userTxn.getSource("pm1"));
test.execute("select * from g1 where e1 >= 100 and e1 < 110");
test.assertRowCount(0);
test = new QueryExecution(userTxn.getSource("pm2"));
test.execute("select * from g1 where e1 >= 100 and e1 < 110");
test.assertRowCount(0);
test.execute("select * from g2 where e1 >= 100 and e1 < 110");
test.assertRowCount(0);
}