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
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)
>...
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
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,