Skip to content

Commit b03e192

Browse files
committed
undo
Signed-off-by: Andrew Duffy <andrew@a10y.dev>
1 parent 5d03f60 commit b03e192

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

encodings/fastlanes/public-api.lock

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -244,22 +244,6 @@ pub vortex_fastlanes::BitPackedDataParts::patches: core::option::Option<vortex_a
244244

245245
pub vortex_fastlanes::BitPackedDataParts::validity: vortex_array::validity::Validity
246246

247-
pub struct vortex_fastlanes::BitPackedPatchedPlugin
248-
249-
impl core::clone::Clone for vortex_fastlanes::BitPackedPatchedPlugin
250-
251-
pub fn vortex_fastlanes::BitPackedPatchedPlugin::clone(&self) -> vortex_fastlanes::BitPackedPatchedPlugin
252-
253-
impl core::fmt::Debug for vortex_fastlanes::BitPackedPatchedPlugin
254-
255-
pub fn vortex_fastlanes::BitPackedPatchedPlugin::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
256-
257-
impl vortex_array::array::plugin::ArrayPlugin for vortex_fastlanes::BitPackedPatchedPlugin
258-
259-
pub fn vortex_fastlanes::BitPackedPatchedPlugin::deserialize(&self, dtype: &vortex_array::dtype::DType, len: usize, metadata: &[u8], buffers: &[vortex_array::buffer::BufferHandle], children: &dyn vortex_array::serde::ArrayChildren, session: &vortex_session::VortexSession) -> vortex_error::VortexResult<vortex_array::array::erased::ArrayRef>
260-
261-
pub fn vortex_fastlanes::BitPackedPatchedPlugin::id(&self) -> vortex_array::array::ArrayId
262-
263247
pub struct vortex_fastlanes::Delta
264248

265249
impl vortex_fastlanes::Delta

encodings/fastlanes/src/bitpacking/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ pub(crate) mod compute;
1414
mod plugin;
1515
mod vtable;
1616

17-
pub use plugin::BitPackedPatchedPlugin;
17+
pub(crate) use plugin::BitPackedPatchedPlugin;
1818
pub use vtable::BitPacked;
1919
pub use vtable::BitPackedArray;

encodings/fastlanes/src/bitpacking/plugin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use crate::BitPackedArrayExt;
2525
/// Custom deserialization plugin that converts a BitPacked array with interior
2626
/// Patches into a PatchedArray holding a BitPacked array.
2727
#[derive(Debug, Clone)]
28-
pub struct BitPackedPatchedPlugin;
28+
pub(crate) struct BitPackedPatchedPlugin;
2929

3030
impl ArrayPlugin for BitPackedPatchedPlugin {
3131
fn id(&self) -> ArrayId {

0 commit comments

Comments
 (0)