-
Type:
Bug
-
Status: Resolved
-
Priority:
Urgent
-
Resolution: Fixed
-
Component/s: Legacy/Local Write-Read Paths
-
Labels:None
-
Bug Category:Correctness - API / Semantic Implementation
-
Severity:Critical
-
Since Version:
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');
Flush nodes (nodetool flush)
insert into test.payload (bucket_id, name, data) values ('8772618c9009cf8f5a5e0c19', 'test2', 'hello'); delete from test.payload where bucket_id = '8772618c9009cf8f5a5e0c18';
Flush nodes (nodetool flush)
select * from test.payload where bucket_id = '8772618c9009cf8f5a5e0c18' and name = 'test';
Expected 0 rows but get 1 row back.