Check if the min/max statistics are in order and non-overlapping (or touching at boundaries)
(&self)
| 268 | /// Check if the min/max statistics are in order and non-overlapping |
| 269 | /// (or touching at boundaries) |
| 270 | pub fn is_sorted(&self) -> bool { |
| 271 | self.max_by_sort_order |
| 272 | .iter() |
| 273 | .zip(self.min_by_sort_order.iter().skip(1)) |
| 274 | .all(|(max, next_min)| max <= next_min) |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | fn sort_columns_from_physical_sort_exprs( |
no test coverage detected