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 1110B10C22 for ; Sat, 23 Nov 2013 13:38:43 +0000 (UTC) Received: (qmail 35457 invoked by uid 500); 23 Nov 2013 13:38:42 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 35242 invoked by uid 500); 23 Nov 2013 13:38:38 -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 35051 invoked by uid 99); 23 Nov 2013 13:38:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Nov 2013 13:38:35 +0000 Date: Sat, 23 Nov 2013 13:38:35 +0000 (UTC) From: "DIKSHA KUSHWAH (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CASSANDRA-6401) "Clustering order by" property does not support when the column name is written in "uppercase" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 DIKSHA KUSHWAH created CASSANDRA-6401: ----------------------------------------- Summary: "Clustering order by" property does not support when the column name is written in "uppercase" Key: CASSANDRA-6401 URL: https://issues.apache.org/jira/browse/CASSANDRA-6401 Project: Cassandra Issue Type: Bug Components: Core Environment: Windows 7 64 bit Reporter: DIKSHA KUSHWAH Database Version : CASSANDRA 2.0.1 1. Connect cassandra 2.0.1 and execute following query:- CREATE TABLE "test"."cat" ( "cache" text, "num" int, PRIMARY KEY("cache","num") ) WITH CLUSTERING ORDER BY (num DESC); 2. Now execute following query:- CREATE TABLE "DOG" ( "CACHE" text, "NUM" int, PRIMARY KEY("CACHE","NUM") ) WITH CLUSTERING ORDER BY (NUM DESC); 3. When we create table "cat",it is successfully created but when we create table "DOG" it gives error "Missing CLUSTERING ORDER for column NUM" because Table "DOG" column name "NUM" is in upper case and Table "CAT" column name "num" is in lower case. 4. Cassandra supports when we create a Table with column names in upper case without "CLUSTERING ORDER BY " property then it should also support this property with upper case column names. -- This message was sent by Atlassian JIRA (v6.1#6144)