System.out.println("read 2:" + RowValue.toString());
// read 2:(r3 row1 byte array,1.3)
Assert.assertEquals("r3 row1 byte array", RowValue.get(0).toString());
Assert.assertEquals(1.3, RowValue.get(1));
scanner.advance();
scanner.getKey(key);
Assert.assertEquals(key, new BytesWritable("k12".getBytes()));
scanner.getValue(RowValue);
Assert.assertEquals("r3 row2 byte array", RowValue.get(0).toString());
Assert.assertEquals(2.3, RowValue.get(1));