[
https://issues.apache.org/jira/browse/CASSANDRA-7049?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Michael Shuler resolved CASSANDRA-7049.
---------------------------------------
Resolution: Won't Fix
cassandra-cli is deprecated and will be removed in 3.0. In 2.0.x/2.1.x, -cli
will likely not see any changes -
http://www.datastax.com/dev/blog/thrift-to-cql3 discusses dynamic columns in
cqlsh and some of the behavior your might be seeing.
> Rows with dynamic columns inserted via cassandra-cli are not shown via cqlsh
> ----------------------------------------------------------------------------
>
> Key: CASSANDRA-7049
> URL: https://issues.apache.org/jira/browse/CASSANDRA-7049
> Project: Cassandra
> Issue Type: Bug
> Components: Core
> Reporter: Sergey Bushik
> Labels: cassandra-cli, cqlsh
>
> {noformat}
> # use cli/thrift interface to create column family and insert 2 rows
> bin/cassandra-cli
> {noformat}
> {code}
> create keyspace test;
> use test;
> # create column family first
> create column family t1 with comparator = UTF8Type and key_validation_class =
> UTF8Type and default_validation_class=UTF8Type and column_metadata =
> [{column_name: column1, validation_class: UTF8Type}];
> # insert few rows into t1 with dynamic columns
> set t1['1']['column2'] = 'value2';
> set t1['2']['column3'] = 'value3';
> # list rows
> list t1;
> -------------------
> RowKey: 2
> => (name=column3, value=value3, timestamp=1397717445436000)
> -------------------
> RowKey: 1
> => (name=column2, value=value2, timestamp=1397717447253000)
> 2 Rows Returned.
> {code}
> {noformat}
> # check that 2 rows are visible from cqlsh
> bin/cqlsh
> {noformat}
> {code}
> use test;
> select * from t1;
> (0 rows)
> {code}
> Expected result:
> Rows are show from CQL
> Actual result:
> No rows are displayed
--
This message was sent by Atlassian JIRA
(v6.2#6252)