Cameron Zemek created CASSANDRA-12765:
-----------------------------------------
Summary: SSTable ignored incorrectly with row level tombstone
Key: CASSANDRA-12765
URL: https://issues.apache.org/jira/browse/CASSANDRA-12765
Project: Cassandra
Issue Type: Bug
Components: Local Write-Read Paths
Reporter: Cameron Zemek
{noformat}
CREATE TABLE test.payload(
bucket_id TEXT,
name TEXT,
data TEXT,
PRIMARY KEY (bucket_id, name)
);
insert into test.payload (bucket_id, name, data) values
('8772618c9009cf8f5a5e0c18', 'test', 'hello');
{noformat}
Flush nodes (nodetool flush)
{noformat}
insert into test.payload (bucket_id, name, data) values
('8772618c9009cf8f5a5e0c19', 'test2', 'hello');
delete from test.payload where bucket_id = '8772618c9009cf8f5a5e0c18';
{noformat}
Flush nodes (nodetool flush)
{noformat}
select * from test.payload where bucket_id = '8772618c9009cf8f5a5e0c18' and
name = 'test';
{noformat}
Expected 0 rows but get 1 row back.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)