Skip to content

Commit c47b70a

Browse files
committed
update locks
Signed-off-by: Andrew Duffy <andrew@a10y.dev>
1 parent 422848b commit c47b70a

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

encodings/fastlanes/src/bitpacking/plugin.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ mod tests {
133133
&metadata,
134134
&buffers,
135135
&children,
136-
&SESSION )?;
136+
&SESSION,
137+
)?;
137138

138139
let patched: PatchedArray = deserialized
139140
.try_downcast()

vortex-array/public-api.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18506,13 +18506,13 @@ pub fn vortex_array::serde::ArrayChildren::is_empty(&self) -> bool
1850618506

1850718507
pub fn vortex_array::serde::ArrayChildren::len(&self) -> usize
1850818508

18509-
impl vortex_array::serde::ArrayChildren for &[vortex_array::ArrayRef]
18509+
impl<T: core::convert::AsRef<[vortex_array::ArrayRef]>> vortex_array::serde::ArrayChildren for T
1851018510

18511-
pub fn &[vortex_array::ArrayRef]::get(&self, index: usize, dtype: &vortex_array::dtype::DType, len: usize) -> vortex_error::VortexResult<vortex_array::ArrayRef>
18511+
pub fn T::get(&self, index: usize, dtype: &vortex_array::dtype::DType, len: usize) -> vortex_error::VortexResult<vortex_array::ArrayRef>
1851218512

18513-
pub fn &[vortex_array::ArrayRef]::is_empty(&self) -> bool
18513+
pub fn T::is_empty(&self) -> bool
1851418514

18515-
pub fn &[vortex_array::ArrayRef]::len(&self) -> usize
18515+
pub fn T::len(&self) -> usize
1851618516

1851718517
pub mod vortex_array::session
1851818518

0 commit comments

Comments
 (0)