Skip to content

Commit

Permalink
Update vortex-fastlanes/src/bitpacking/serde.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Kruszewski <[email protected]>
  • Loading branch information
gatesn and robert3005 authored Mar 22, 2024
1 parent 6f7e601 commit 2b3e295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vortex-fastlanes/src/bitpacking/serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ impl ArraySerde for BitPackedArray {

impl EncodingSerde for BitPackedEncoding {
fn read(&self, ctx: &mut ReadCtx) -> VortexResult<ArrayRef> {
let encoded = ctx.with_schema(PType::U8.into()).read()?;
let encoded = ctx.bytes().read()?;
let validity = ctx.read_optional_array()?;
let patches = ctx.read_optional_array()?;
let bit_width = ctx.read_usize()?;
Expand Down

0 comments on commit 2b3e295

Please sign in to comment.