You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Joseph Chu (JIRA)" <ji...@apache.org> on 2014/11/20 23:23:33 UTC

[jira] [Created] (CASSANDRA-8349) ALTER KEYSPACE causes tables not to be found

Joseph Chu created CASSANDRA-8349:
-------------------------------------

             Summary: ALTER KEYSPACE causes tables not to be found
                 Key: CASSANDRA-8349
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-8349
             Project: Cassandra
          Issue Type: Bug
            Reporter: Joseph Chu
            Priority: Minor


Running Cassandra 2.1.2 on a single node.

Reproduction steps in cqlsh:

CREATE KEYSPACE a WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1};
CREATE TABLE a.a (a INT PRIMARY KEY);
INSERT INTO a.a (a) VALUES (1);
SELECT * FROM a.a;
ALTER KEYSPACE a WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 2};
SELECT * FROM a.a;
DESCRIBE KEYSPACE a

Errors:
Column family 'a' not found

Workaround(?):
Restart the instance



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)