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 8E3779F39 for ; Wed, 18 Apr 2012 16:01:05 +0000 (UTC) Received: (qmail 78498 invoked by uid 500); 18 Apr 2012 16:01:05 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 78428 invoked by uid 500); 18 Apr 2012 16:01: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 78418 invoked by uid 99); 18 Apr 2012 16:01:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Apr 2012 16:01:05 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Apr 2012 16:01:01 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id A5AD53A1B1F for ; Wed, 18 Apr 2012 16:00:40 +0000 (UTC) Date: Wed, 18 Apr 2012 16:00:40 +0000 (UTC) From: "Jonathan Ellis (Assigned) (JIRA)" To: commits@cassandra.apache.org Message-ID: <352821970.1294.1334764840680.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <285152062.35855.1334721073500.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Assigned] (CASSANDRA-4164) Bug with 'describe columnfamily' in cql(sh?) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CASSANDRA-4164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jonathan Ellis reassigned CASSANDRA-4164: ----------------------------------------- Assignee: paul cannon > Bug with 'describe columnfamily' in cql(sh?) > -------------------------------------------- > > Key: CASSANDRA-4164 > URL: https://issues.apache.org/jira/browse/CASSANDRA-4164 > Project: Cassandra > Issue Type: Bug > Affects Versions: 1.1.0 > Reporter: Nick Bailey > Assignee: paul cannon > Fix For: 1.1.0 > > > There is a discrepancy between create column family commands and then the output of the describe command: > {noformat} > cqlsh:test> CREATE TABLE timeline ( > ... user_id varchar, > ... tweet_id uuid, > ... author varchar, > ... body varchar, > ... PRIMARY KEY (user_id, tweet_id) > ... ); > cqlsh:test> describe columnfamily timeline; > CREATE COLUMNFAMILY timeline ( > user_id text PRIMARY KEY > ) WITH > comment='' AND > comparator='CompositeType(org.apache.cassandra.db.marshal.UUIDType,org.apache.cassandra.db.marshal.UTF8Type)' AND > read_repair_chance=0.100000 AND > gc_grace_seconds=864000 AND > default_validation=text AND > min_compaction_threshold=4 AND > max_compaction_threshold=32 AND > replicate_on_write=True AND > compaction_strategy_class='SizeTieredCompactionStrategy' AND > compression_parameters:sstable_compression='org.apache.cassandra.io.compress.SnappyCompressor'; > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira