Skip to content

Commit

Permalink
Change variable name from index_type to key_type
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Oct 14, 2020
1 parent 061a5d3 commit 54458f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/parquet/src/arrow/array_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -896,9 +896,9 @@ impl<'a> ArrayReaderBuilder {
>::new(
page_iterator, column_desc, converter
)?))
} else if let Some(ArrowType::Dictionary(index_type, _)) = arrow_type
} else if let Some(ArrowType::Dictionary(key_type, _)) = arrow_type
{
match **index_type {
match **key_type {
ArrowType::Int8 => {
let converter =
DictionaryConverter::new(DictionaryArrayConverter {});
Expand Down

0 comments on commit 54458f3

Please sign in to comment.