byte[] from, byte[] to, Integer batchSize, BatchListener l) {
Table table = database.findTable(colFamily.getColumnFamily());
if(table == null) {
return new HashSet<Column>();
}
Row row = table.findOrCreateRow(rowKey);
if(row == null)
return new HashSet<Column>();
return row.columnSlice(from, to);
}