Skip to content

Commit 5ebeb74

Browse files
committed
not
Signed-off-by: Joe Isaacs <[email protected]>
1 parent f55a4c3 commit 5ebeb74

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

vortex-array/src/expr/exprs/binary.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ pub fn eq(lhs: Expression, rhs: Expression) -> Expression {
319319
/// ## Example usage
320320
///
321321
/// ```
322-
/// # use vortex_array::arrays::{BoolArray, PrimitiveArray };
322+
/// # use vortex_array::arrays::{BoolArray, PrimitiveArray};
323323
/// # use vortex_array::{IntoArray, ToCanonical};
324324
/// # use vortex_array::validity::Validity;
325325
/// # use vortex_buffer::buffer;

vortex-array/src/expr/exprs/is_null.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
use std::fmt::Formatter;
55
use std::ops::Not;
6+
67
use is_null::IsNullFn;
78
use vortex_dtype::DType;
89
use vortex_dtype::Nullability;

vortex-array/src/scalar_fns/is_null/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// SPDX-FileCopyrightText: Copyright the Vortex contributors
33

44
use std::ops::Not;
5+
56
use vortex_dtype::DType;
67
use vortex_dtype::Nullability::NonNullable;
78
use vortex_error::VortexResult;

0 commit comments

Comments
 (0)