We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7264b30 commit e97389aCopy full SHA for e97389a
vortex-vector/src/decimal/generic.rs
@@ -54,7 +54,7 @@ impl<D: NativeDecimalType + PartialEq> PartialEq for DVector<D> {
54
.iter()
55
.zip(other.elements.iter())
56
.enumerate()
57
- .all(|(i, (a, b))| !self.validity.value(i) || a == b)
+ .all(|(i, (a, b))| !self.validity.value(i) | (a == b))
58
}
59
60
vortex-vector/src/primitive/generic.rs
@@ -44,7 +44,7 @@ impl<T: NativePType + PartialEq> PartialEq for PVector<T> {
44
45
46
47
48
49
50
0 commit comments