Skip to content

Commit c344bdd

Browse files
committed
format
1 parent 641b750 commit c344bdd

File tree

1 file changed

+8
-6
lines changed
  • vortex-array/src/arrays/varbinview

1 file changed

+8
-6
lines changed

vortex-array/src/arrays/varbinview/mod.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,14 @@ impl BinaryView {
161161
12 => Self {
162162
inlined: Inlined::new::<12>(value),
163163
},
164-
_ => Self { _ref: Ref::new(
165-
u32::try_from(value.len()).vortex_unwrap(),
166-
value[0..4].try_into().vortex_unwrap(),
167-
block,
168-
offset,
169-
)},
164+
_ => Self {
165+
_ref: Ref::new(
166+
u32::try_from(value.len()).vortex_unwrap(),
167+
value[0..4].try_into().vortex_unwrap(),
168+
block,
169+
offset,
170+
),
171+
},
170172
}
171173
}
172174

0 commit comments

Comments
 (0)