Jeremy Hanna created CASSANDRA-4907:
---------------------------------------
Summary: Cassandra cli doesn't recognize non-compact storage
column families
Key: CASSANDRA-4907
URL: https://issues.apache.org/jira/browse/CASSANDRA-4907
Project: Cassandra
Issue Type: Bug
Components: Core
Affects Versions: 1.2.0 beta 1
Reporter: Jeremy Hanna
To reproduce:
{code}
create keyspace foo with replication = {'class': 'SimpleStrategy',
'replication_factor': 1};
use foo;
CREATE TABLE clicks (
user_id text,
time timestamp,
url text,
PRIMARY KEY (user_id, time)
) WITH COMPACT STORAGE;
CREATE TABLE comments (
article_id uuid,
posted_at timestamp,
author text,
karma int,
content text,
PRIMARY KEY (article_id, posted_at)
);
{code}
Then go to the CLI and do 'show keyspaces;' and there will be the foo keyspace
and the clicks column family but not the comments column family.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira