Deleted columns are resurrected after a flush
---------------------------------------------
Key: CASSANDRA-1837
URL: https://issues.apache.org/jira/browse/CASSANDRA-1837
Project: Cassandra
Issue Type: Bug
Components: Core
Affects Versions: 0.7.0 rc 1
Reporter: Brandon Williams
Fix For: 0.7.0
Easily reproduced with the cli:
{noformat}
[defa...@unknown] create keyspace testks;
2785d67c-02df-11e0-ac09-e700f669bcfc
[defa...@unknown] use testks;
Authenticated to keyspace: testks
[defa...@testks] create column family testcf;
2fbad20d-02df-11e0-ac09-e700f669bcfc
[defa...@testks] set testcf['test']['foo'] = 'foo';
Value inserted.
[defa...@testks] set testcf['test']['bar'] = 'bar';
Value inserted.
[defa...@testks] list testcf;
Using default limit of 100
-------------------
RowKey: test
=> (column=626172, value=626172, timestamp=1291821869120000)
=> (column=666f6f, value=666f6f, timestamp=1291821857320000)
1 Row Returned.
[defa...@testks] del testcf['test'];
row removed.
[defa...@testks] list testcf;
Using default limit of 100
-------------------
RowKey: test
1 Row Returned.
{noformat}
Now flush testks and look again:
{noformat}
[defa...@testks] list testcf;
Using default limit of 100
-------------------
RowKey: test
=> (column=626172, value=626172, timestamp=1291821869120000)
=> (column=666f6f, value=666f6f, timestamp=1291821857320000)
1 Row Returned.
{noformat}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.