Details
-
Bug
-
Status: Resolved
-
Urgent
-
Resolution: Fixed
-
None
-
Correctness - API / Semantic Implementation
-
Critical
Description
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.