@Test public void testScanUncommitted() throws Exception {
try{
TransactionManager tm = new TransactionManager(conf);
TransactionalTable table = new TransactionalTable(conf, TEST_TABLE);
TransactionState t=tm.beginTransaction();
int[] lIntsA=new int[]{100,243,2342,22,1,5,43,56};
for (int i=0;i<lIntsA.length;i++) {
byte[]data=Bytes.toBytes(lIntsA[i]);
Put put=new Put(data);
put.add(Bytes.toBytes(TEST_FAMILY), Bytes.toBytes(TEST_COL), data);