Re: Added extra column as composite key while creation counter column family

2013-04-17 Thread Robert Coli
On Tue, Apr 16, 2013 at 10:29 PM, Kuldeep Mishra wrote: > cassandra 1.2.0 > > Is it a bug in 1.2.0 ? > While I can't speak to this specific issue, 1.2.0 has meaningful known issues. I suggest upgrade to 1.2.3(/4) ASAP. =Rob

Re: Added extra column as composite key while creation counter column family

2013-04-16 Thread Kuldeep Mishra
cassandra 1.2.0 Is it a bug in 1.2.0 ? Thanks KK On Wed, Apr 17, 2013 at 2:56 AM, aaron morton wrote: > What version are you using ? > > WIth 1.2.4 … > > cqlsh:dev> CREATE TABLE counters ( >... key text, >... value counter, >... PRIMARY KEY (key) >...

Re: Added extra column as composite key while creation counter column family

2013-04-16 Thread aaron morton
What version are you using ? WIth 1.2.4 … cqlsh:dev> CREATE TABLE counters ( ... key text, ... value counter, ... PRIMARY KEY (key) ... ) WITH COMPACT STORAGE; cqlsh:dev> describe table counters; CREATE TABLE counters ( key text PRIMARY KEY, value counter

Added extra column as composite key while creation counter column family

2013-04-14 Thread Kuldeep Mishra
Hi, While I creating counter column family a extra column is being added what I do ? Table creation script CREATE TABLE counters ( key text, value counter, PRIMARY KEY (key) ) WITH COMPACT STORAGE after describing column family I am getting following CREATE TABLE counters ( key text,