You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Julien Moreau (JIRA)" <ji...@apache.org> on 2015/08/24 12:21:45 UTC

[jira] [Created] (CASSANDRA-10161) Composite case-sensitive primary key: first item is not quoted in DESCRIBE TABLE

Julien Moreau created CASSANDRA-10161:
-----------------------------------------

             Summary: Composite case-sensitive primary key: first item is not quoted in DESCRIBE TABLE
                 Key: CASSANDRA-10161
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-10161
             Project: Cassandra
          Issue Type: Bug
            Reporter: Julien Moreau
            Priority: Minor


A table is created with case-sensitive composite primary key:
{code}
CREATE TABLE foo (
 "Key1" text,
 "Key2" text,
 "Value" text
 PRIMARY KEY ("Key1", "Key2")
);
{code}

In the result of {{DESCRIBE TABLE foo;}}:
{code}
CREATE TABLE foo (
 "Key1" text,
 "Key2" text,
 "Value" text
 PRIMARY KEY (Key1, "Key2")
);
{code}
{{Key1}} is not quoted.
When trying to re-create the table with this description, there is an error:
{code}
InvalidRequest: code=2200 [Invalid query] message="Unknown definition key1 referenced in PRIMARY KEY"
{code}




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