Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dandandan committed Oct 22, 2021
1 parent 1d1c00e commit 1535901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compute/comparison/boolean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub fn lt_eq(lhs: &BooleanArray, rhs: &BooleanArray) -> Result<BooleanArray> {
/// Null values are less than non-null values.
pub fn lt_eq_scalar(lhs: &BooleanArray, rhs: bool) -> BooleanArray {
if rhs {
lhs.clone()
compare_op_scalar(lhs, rhs, |_, _| 0b11111111)
} else {
compare_op_scalar(lhs, rhs, |a, _| !a)
}
Expand Down

0 comments on commit 1535901

Please sign in to comment.