Skip to content

Commit

Permalink
or (many, single) fix
Browse files Browse the repository at this point in the history
  • Loading branch information
barak1412 committed Sep 1, 2024
1 parent 4dc90a9 commit b164f9e
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 @@ -84,7 +84,7 @@ impl BitOr for &BooleanChunked {
return match rhs.get(0) {
Some(true) => BooleanChunked::full(self.name().clone(), true, self.len()),
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 b164f9e

Please sign in to comment.