Re: AssertionError during ALTER TYPE in 1.2.5

2013-07-31 Thread Sergey Leschenko
Hi, On Mon, Jul 29, 2013 at 11:23 AM, aaron morton wrote: > The error is because the underlying CF is not defined using a composite type > for the comparator. > > CREATE TABLE "RRD" ( > key text, > column1 blob, > value blob, > PRIMARY KEY (key, column1) > ) WITH COMPACT STORAGE AND > > Looks

RE: AssertionError during ALTER TYPE in 1.2.5

2013-07-29 Thread Adriano Paggi
wrong? Adriano. From: aaron morton [mailto:aa...@thelastpickle.com] Sent: Lunes, 29 de Julio de 2013 05:23 a.m. To: user@cassandra.apache.org Subject: Re: AssertionError during ALTER TYPE in 1.2.5 The error is because the underlying CF is not defined using a composi

Re: AssertionError during ALTER TYPE in 1.2.5

2013-07-29 Thread aaron morton
The error is because the underlying CF is not defined using a composite type for the comparator. > CREATE TABLE "RRD" ( > key text, > column1 blob, > value blob, > PRIMARY KEY (key, column1) > ) WITH COMPACT STORAGE AND Looks like this PRIMARY KEY (key, column1) is incorrect. That says "Th