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 3095E18735 for ; Tue, 4 Aug 2015 13:39:05 +0000 (UTC) Received: (qmail 30934 invoked by uid 500); 4 Aug 2015 13:39:05 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 30896 invoked by uid 500); 4 Aug 2015 13:39:05 -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 30879 invoked by uid 99); 4 Aug 2015 13:39:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2015 13:39:04 +0000 Date: Tue, 4 Aug 2015 13:39:04 +0000 (UTC) From: "Aleksey Yeschenko (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CASSANDRA-9968) cqlsh describe bug MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-9968?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aleksey Yeschenko updated CASSANDRA-9968: ----------------------------------------- Assignee: Adam Holmberg > cqlsh describe bug > ------------------- > > Key: CASSANDRA-9968 > URL: https://issues.apache.org/jira/browse/CASSANDRA-9968 > Project: Cassandra > Issue Type: Bug > Reporter: T Jake Luciani > Assignee: Adam Holmberg > Labels: cqlsh > Fix For: 3.0 beta 1 > > > While trying to fix cqlsh dtests. I noticed quite a big bug. Not sure if this is a python driver bug or cqlsh? > Looks like the column names are now in alphabetical order but the PRIMARY KEY stays at the top. > {code} > cqlsh:foo> CREATE TABLE foo.users ( userid text PRIMARY KEY, firstname text, lastname text, age int); > cqlsh:foo> DESC TABLE foo.users ; > CREATE TABLE foo.users ( > age int PRIMARY KEY, > firstname text, > lastname text, > userid text > ) WITH bloom_filter_fp_chance = 0.01 > AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} > AND comment = '' > AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy'} > AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} > AND dclocal_read_repair_chance = 0.1 > AND default_time_to_live = 0 > AND gc_grace_seconds = 864000 > AND max_index_interval = 2048 > AND memtable_flush_period_in_ms = 0 > AND min_index_interval = 128 > AND read_repair_chance = 0.0 > AND speculative_retry = '99.0PERCENTILE'; > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)