if(info == null) {
//If there is no column family in cassandra, then we need to return no rows to the user...
return new CursorReturnsEmptyRows(rowKeys);
}
ColumnType type = info.getColumnType();
if(type != ColumnType.ANY_EXCEPT_COMPOSITE) {
throw new UnsupportedOperationException("Finding on composite type="+colFamily+" not allowed here, you should be using column slice as these rows are HUGE!!!!");
}
Keyspace keyspace = columnFamilies.getKeyspace();