[ https://issues.apache.org/jira/browse/CASSANDRA-10598?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14978086#comment-14978086
]
ASF GitHub Bot commented on CASSANDRA-10598:
--------------------------------------------
GitHub user allenyeh79 opened a pull request:
https://github.com/apache/cassandra/pull/56
CASSANDRA-10598:Let same index name can be used in different keyspaces
Let same index name can be used in different keyspaces.
JIRA link:
https://issues.apache.org/jira/browse/CASSANDRA-10598
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/bitus-dt/cassandra cassandra-1.2
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/cassandra/pull/56.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #56
----
commit 85487ad55c253ac43d4980cf30b9cfeac256af0f
Author: allen.yeh <allen.yeh@ubitus.net>
Date: 2015-10-28T09:36:22Z
CASSANDRA-10598:The same index name can be used in different keyspaces
without conflict
----
> 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
> Components: Core
> Reporter: Yeh Sheng Hsiung
>
> 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)
|