mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 11:30:36 +00:00
This new method allows sstable to load the first row of the first partition and last row of last partition. That's useful for incremental reading of sstable run which will be split at clustering boundary. To get the first row, it consumes the first row (which can be either a clustering row or range tombstone change) and returns its position_in_partition. To get the last row, it does the same as above but in reverse mode instead. Signed-off-by: Raphael S. Carvalho <raphaelsc@scylladb.com>