[
https://issues.apache.org/jira/browse/CASSANDRA-10161?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14937004#comment-14937004
]
Carl Yeksigian commented on CASSANDRA-10161:
--------------------------------------------
Just pushed a new version to the 2.1 and 2.2 branches. Since the 3.0 driver has
already been integrated, there is no need to update the driver in 3.0/trunk.
> 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
> Assignee: Carl Yeksigian
> Priority: Minor
> Labels: cqlsh
> Fix For: 2.1.x
>
>
> 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)