mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-06 06:53:12 +00:00
The test generates random mutations and eliminates mutations whose keys tokenize to 0, in particular it eliminates mutations with empty partition keys (which should not end up in sstables). However it would do that after using the randomly generated mutations to create their reversed versions. So the reversed versions of mutations with empty partition keys would stay. Fix by placing the workaround earlier in the test. Closes #9447