(&self, other: &Self)
| 316 | |
| 317 | impl PartialEq for MirRelationExpr { |
| 318 | fn eq(&self, other: &Self) -> bool { |
| 319 | // Capture the result and test it wrt `Ord` implementation in test environments. |
| 320 | let result = structured_diff::MreDiff::new(self, other).next().is_none(); |
| 321 | mz_ore::soft_assert_eq_no_log!(result, self.cmp(other) == Ordering::Equal); |
| 322 | result |
| 323 | } |
| 324 | } |
| 325 | impl Eq for MirRelationExpr {} |
| 326 |
no test coverage detected