mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 01:20:39 +00:00
When a query contains IN restriction on its partition key, it's currently not eligible for indexing. It was however erroneously qualified as such, which lead to fetching incorrect results. This commit fixes the issue by not allowing such queries to undergo indexing, and comes with a regression test. Fixes #10300 Closes #10302