(&self, other: &Self)
| 124 | |
| 125 | impl Ord for dyn LogicalType { |
| 126 | fn cmp(&self, other: &Self) -> Ordering { |
| 127 | // Logical types with identical signatures are considered equal. |
| 128 | self.signature().cmp(&other.signature()) |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | impl Hash for dyn LogicalType { |
no test coverage detected