Skip to content

Commit 2f40787

Browse files
committed
fix[array]: min_max return type non nullable
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 6d0ac94 commit 2f40787

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vortex-array/src/compute/min_max.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ impl ComputeFnVTable for MinMax {
111111
StructFields::new(
112112
["min", "max"].into(),
113113
vec![
114-
array.dtype().as_nonnullable().clone(),
115-
array.dtype().as_nonnullable().clone(),
114+
array.dtype().as_nonnullable(),
115+
array.dtype().as_nonnullable(),
116116
],
117117
),
118118
Nullability::Nullable,

0 commit comments

Comments
 (0)