You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Yeh Sheng Hsiung (JIRA)" <ji...@apache.org> on 2015/11/03 10:25:27 UTC

[jira] [Issue Comment Deleted] (CASSANDRA-10598) Unable to use same index name on column families which have different names in different keyspaces

     [ https://issues.apache.org/jira/browse/CASSANDRA-10598?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yeh Sheng Hsiung updated CASSANDRA-10598:
-----------------------------------------
    Comment: was deleted

(was: Let same index name can be used in different keyspaces)

> Unable to use same index name on column families which have different names in different keyspaces
> --------------------------------------------------------------------------------------------------
>
>                 Key: CASSANDRA-10598
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-10598
>             Project: Cassandra
>          Issue Type: Bug
>            Reporter: Yeh Sheng Hsiung
>              Labels: patch
>             Fix For: 2.1.x, 2.1.12
>
>
> Expected:
> The same index name can be used in different keyspaces without conflict
> Actual:
> Unable to use same index name on column families which have different names in different keyspaces
> Steps to Reproduce:
> {code}
> cqlsh> CREATE KEYSPACE ks1 WITH replication = {'class': 'NetworkTopologyStrategy', 'DC1' : 1};
> cqlsh> CREATE KEYSPACE ks2 WITH replication = {'class': 'NetworkTopologyStrategy', 'DC1' : 1};
> cqlsh> use ks1;
> cqlsh:ks1> CREATE TABLE t1 (c1 int PRIMARY KEY, c2 int);
> cqlsh:ks1> create index c2_idx on t1 (c2);
> cqlsh:ks1> use ks2;
> cqlsh:ks2> CREATE TABLE t2 (c1 int PRIMARY KEY, c2 int);
> cqlsh:ks2> create index c2_idx on t2 (c2);
> ConfigurationException: <ErrorMessage code=2300 [Query invalid because of configuration issue] message="Duplicate index name c2_idx">
> {code}



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