Merge into larger interval set

This reduces the work done while merging rows. In at least one case
(issue 50450), we have thousands of union([range], [20,000 ranges]),
which previously inserted each of the 20,000 ranges one by one. Now we
only insert one range into the right hand set after copying the set
over.
This commit is contained in:
Mark Rousskov 2024-01-16 10:19:23 -05:00
parent 665d2c6f2c
commit 1696148a89

View File

@ -236,6 +236,12 @@ pub fn union(&mut self, other: &IntervalSet<I>) -> bool
I: Step,
{
assert_eq!(self.domain, other.domain);
if self.map.len() < other.map.len() {
let backup = self.clone();
self.map.clone_from(&other.map);
return self.union(&backup);
}
let mut did_insert = false;
for range in other.iter_intervals() {
did_insert |= self.insert_range(range);