Re: Help deleting data using cql v3

2012-05-24 Thread Stephen Powis
Thanks for the info Roland! I guess I missed that bug report in my google searching. Stephen On Fri, May 25, 2012 at 12:26 AM, Roland Mechler wrote: > This is a known issue, see > https://issues.apache.org/jira/browse/CASSANDRA-4193. > > In the meantime, a workaround is to specify all the colum

Re: Help deleting data using cql v3

2012-05-24 Thread Roland Mechler
This is a known issue, see https://issues.apache.org/jira/browse/CASSANDRA-4193. In the meantime, a workaround is to specify all the column names to be deleted. I.e., delete my_value from testCol where my_id='1_71548' and time_id=2fc39fa0-1dd5-11b2-9b6a-395f35722afe; should work. (I had the s

Help deleting data using cql v3

2012-05-24 Thread Stephen Powis
I have the following schema setup in cassandra 1.1 with cql 3: CREATE TABLE testCol ( my_id varchar, time_id TimeUUIDType, my_value int, PRIMARY KEY (my_id, time_id) ); and the following data already inserted: my_id| time_id | my_valu