mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-02 06:05:53 +00:00
The downstream code expects a single-column restriction when using an index. We could fix it, but we'd still have to filter the rows fetched from the index table, unlike the code that queries the base table directly. For instance, WHERE (c1,c2,c3) = (1,2,3) with an index on c3 can fetch just the right rows from the base table but all the c3=3 rows from the index table. Fixes #7680 Signed-off-by: Dejan Mircevski <dejan@scylladb.com>