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