mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-13 11:22:01 +00:00
Column `operation` now contains `operation::row_delete` (== 2) after queries like `delete from tbl where pk=x AND ck=y;`. Before this patch row deletes were treated as updates, which was incorrect because updates do not contain row tombstones (and row deletes do). Refs #5709