public List<column_t> get_slice(String tablename, String key, String columnParent, int start, int count) throws InvalidRequestException
{
logger.debug("get_slice");
String[] values = RowMutation.getColumnAndColumnFamily(columnParent);
ColumnFamily cfamily = readColumnFamily(new SliceReadCommand(tablename, key, columnParent, start, count));
if (cfamily == null)
{
return EMPTY_COLUMNS;
}
Collection<IColumn> columns = null;