Skip to content

Commit

Permalink
xor (many, single) fix
Browse files Browse the repository at this point in the history
  • Loading branch information
barak1412 committed Sep 2, 2024
1 parent b164f9e commit 119943c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-core/src/chunked_array/bitwise.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl BitXor for &BooleanChunked {
return match rhs.get(0) {
Some(true) => self.not(),
Some(false) => self.clone(),
None => &rhs.new_from_index(0, self.len()) | self,
None => self | &rhs.new_from_index(0, self.len()),
};
},
_ => {},
Expand Down

0 comments on commit 119943c

Please sign in to comment.