Re: CQL3 And ReversedTypes Question

2013-04-15 Thread Gareth Collins
Added: https://issues.apache.org/jira/browse/CASSANDRA-5472 thanks, Gareth On Sun, Apr 14, 2013 at 2:33 PM, aaron morton wrote: > Bad Request: Type error: > org.apache.cassandra.cql3.statements.Selection$SimpleSelector@1e7318cannot be > passed as argument 0 of function dateof of type timeuuid

Re: CQL3 And ReversedTypes Question

2013-04-14 Thread aaron morton
> Bad Request: Type error: > org.apache.cassandra.cql3.statements.Selection$SimpleSelector@1e7318 cannot > be passed as argument 0 of function dateof of type timeuuid > > Is there something I am missing here or should I open a new ticket? Yes please. Cheers - Aaron Morton Free

Re: CQL3 And ReversedTypes Question

2013-04-12 Thread Gareth Collins
OK, trying out 1.2.4. The previous issue seems to be fine, but I am experiencing a new one: cqlsh:location> create table test_y (message_id timeuuid, name text, PRIMARY KEY (name,message_id)); cqlsh:location> insert into test_y (message_id,name) VALUES (now(),'foo'); cqlsh:location> insert into te

Re: CQL3 And ReversedTypes Question

2013-03-26 Thread Gareth Collins
Added: https://issues.apache.org/jira/browse/CASSANDRA-5386 Thanks very much for the quick answer! regards, Gareth On Tue, Mar 26, 2013 at 3:55 AM, Sylvain Lebresne wrote: > You aren't missing anything obvious. That's a bug really. Would you mind > opening a ticket on https://issues.apache.org

Re: CQL3 And ReversedTypes Question

2013-03-26 Thread Sylvain Lebresne
You aren't missing anything obvious. That's a bug really. Would you mind opening a ticket on https://issues.apache.org/jira/browse/CASSANDRA? -- Sylvain On Tue, Mar 26, 2013 at 2:48 AM, Gareth Collins wrote: > Hi, > > I created a table with the following structure in cqlsh (Cassandra > 1.2.3 -

CQL3 And ReversedTypes Question

2013-03-25 Thread Gareth Collins
Hi, I created a table with the following structure in cqlsh (Cassandra 1.2.3 - cql 3): CREATE TABLE mytable ( column1 text, column2 text, messageId timeuuid, message blob, PRIMARY KEY ((column1, column2), messageId)); I can quite happily add values to this table. e.g: in