mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-02 22:25:48 +00:00
Currently, when executing queries accelerated by an index on a static column, paging is unable to break base table partitions across pages and is forced to return them in whole. This will cause problems if such a query must return a very large base table partition because it will have to be loaded into memory. Fixing this issue will require a more sophisticated approach than what was done in the PR. For the time being, an xfailing pytest is added which should start passing after paging is improved.