mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-01 21:55:50 +00:00
Column stats min_timestamp, max_timestamp and max_local_deletion_time were being update incorrectly. max_local_deletion_time should be std::numeric_limits<int>::max() by default, and then keep track of max local deletion time, if any. This bug prevented a sstable generated by us from being compacted by c* because max_local_deletion_time was storing std::numeric_limits<int> ::min(), and thus the sstable would be considered fully expired. Signed-off-by: Raphael S. Carvalho <raphaelsc@cloudius-systems.com>