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 bedf610 commit 4704971Copy full SHA for 4704971
vortex-array/src/expr/exprs/mask.rs
@@ -71,7 +71,7 @@ impl VTable for Mask {
71
let input = ctx.return_dtype(0)?;
72
let mask = ctx.return_dtype(1)?;
73
vortex_ensure!(
74
- &mask == &DType::Bool(Nullability::NonNullable),
+ mask == DType::Bool(Nullability::NonNullable),
75
"The mask argument to 'mask' must be a non-nullable boolean array, got {}",
76
mask
77
);
vortex-array/src/expr/exprs/not.rs
@@ -74,7 +74,7 @@ impl VTable for Not {
child_dtype
}
- Ok(child_dtype.clone())
+ Ok(child_dtype)
78
79
80
fn evaluate(
0 commit comments