Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Added missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed Jun 27, 2022
1 parent f92cd9f commit ee91956
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/io/parquet/read/deserialize/simple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,12 @@ fn dict_read<'a, K: DictionaryKey, I: 'a + DataPages>(
chunk_size,
|x: i32| x as u32,
)),
UInt64 => dyn_iter(primitive::DictIter::<K, _, _, _, _>::new(
iter,
data_type,
chunk_size,
|x: i64| x as u64,
)),
Int8 => dyn_iter(primitive::DictIter::<K, _, _, _, _>::new(
iter,
data_type,
Expand Down

0 comments on commit ee91956

Please sign in to comment.