Unable to read all columns in a column family from the CLI
----------------------------------------------------------

                 Key: CASSANDRA-260
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-260
             Project: Cassandra
          Issue Type: Bug
            Reporter: Michael Greene


Since r788516 the typical 'get all columns for a row/cf' example no longer 
works.

cassandra> get Table1.Standard1['jsmith']
is the example from the wiki.

This is due to Table.getSliceFrom now requiring the cfName be split by 
"cf:column", whereas the CLI is passing just "cf" for this Cql expression.

It looks like there are two possible solutions.  One is for ColumnRangeQueryRSD 
to append the appropriate wildcard to columnFamily_column, i.e. cfMeta_.cfName 
+ ":"

The other is for the Cql to be adapted to potentially expect multiple columns 
when it sees table.cf['rowkey'][''] or table.cf['rowkey'][':'] but I'm not sure 
how to do that.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to