public void testMultiRangeContiguousNoIndex() throws Throwable
{
// in order not to change thrift interfaces at this stage we build SliceQueryFilter
// directly instead of using QueryFilter to build it for us
ColumnSlice[] ranges = new ColumnSlice[] {
new ColumnSlice(Composites.EMPTY, cellname("colA")),
new ColumnSlice(cellname("colC"), cellname("colE")),
new ColumnSlice(cellname("colF"), cellname("colF")),
new ColumnSlice(cellname("colG"), cellname("colG")),
new ColumnSlice(cellname("colI"), Composites.EMPTY) };
ColumnSlice[] rangesReversed = new ColumnSlice[] {
new ColumnSlice(Composites.EMPTY, cellname("colI")),
new ColumnSlice(cellname("colG"), cellname("colG")),
new ColumnSlice(cellname("colF"), cellname("colF")),
new ColumnSlice(cellname("colE"), cellname("colC")),
new ColumnSlice(cellname("colA"), Composites.EMPTY) };
String tableName = "Keyspace1";
String cfName = "Standard1";
Keyspace table = Keyspace.open(tableName);
ColumnFamilyStore cfs = table.getColumnFamilyStore(cfName);