Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 30552180E8 for ; Tue, 27 Oct 2015 08:15:31 +0000 (UTC) Received: (qmail 17089 invoked by uid 500); 27 Oct 2015 08:15:28 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 16942 invoked by uid 500); 27 Oct 2015 08:15:28 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 16814 invoked by uid 99); 27 Oct 2015 08:15:27 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Oct 2015 08:15:27 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id BAF672C1F58 for ; Tue, 27 Oct 2015 08:15:27 +0000 (UTC) Date: Tue, 27 Oct 2015 08:15:27 +0000 (UTC) From: "Yeh Sheng Hsiung (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CASSANDRA-10598) Unable to use same index name on column families which have different names in different keyspaces MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Yeh Sheng Hsiung created CASSANDRA-10598: -------------------------------------------- Summary: 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 Priority: Minor 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: {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)