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