Skip to content

Commit

Permalink
Update src/parquet2/src/encoding/hybrid_rle/decoder.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
desmondcheongzx authored Dec 3, 2024
1 parent 72f7366 commit d5215d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parquet2/src/encoding/hybrid_rle/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ mod tests {
let bit_width = 1usize;
let values = [
2, 0, 0, 0, // Length indicator as u32.
0b00000101, // Bitpacked indicator with 1 value (1 << 1 | 1).
0b00000101, // Bitpacked indicator with 1 value (2 << 1 | 1).
true as u8 // Incomplete encoding (should have another u8).
];

Expand Down

0 comments on commit d5215d0

Please sign in to comment.