https://github.com/Netflix/astyanax/blob/master/astyanax-test/src/test/java/com/netflix/astyanax/thrift/ThriftKeyspaceImplTest.java
@test
public void testGetAllKeysRoot() {
.........
row = result.getResult().getRowByIndex(10);
Assert.assertEquals("M", row.getKey());
.......
}
Ideally row by index of the 10th index should return the 11th element K right. Not sure why it should be M (the 12th index). Clarification would help here. Thanks