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
> 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
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
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
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 -
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