put.add(Bytes.toBytes(TEST_FAMILY), Bytes.toBytes(TEST_COL), data);
table.put(t,put);
}
tm.tryCommit(t);
TransactionState tu=tm.beginTransaction();
int[] lIntsB=new int[]{105,24,4342,32,7,3,30,40};
for (int i=0;i<lIntsB.length;i++) {
byte[]data=Bytes.toBytes(lIntsB[i]);
Put put=new Put(data);
put.add(Bytes.toBytes(TEST_FAMILY), Bytes.toBytes(TEST_COL), data);