}
// Move 2 out of ROW1 and 1 into ROW2 and 1 into ROW3
private TransactionState makeTransaction(final boolean flushMidWay)
throws IOException {
TransactionState transactionState = transactionManager.beginTransaction();
// Reads
int row1 = Bytes.toInt(table.get(transactionState, ROW1, COL_A).getValue());
int row2 = Bytes.toInt(table.get(transactionState, ROW2, COL_A).getValue());
int row3 = Bytes.toInt(table.get(transactionState, ROW3, COL_A).getValue());