Skip to content

Commit

Permalink
arrow-schema: Include child fields of REE fields
Browse files Browse the repository at this point in the history
  • Loading branch information
brancz committed Sep 17, 2024
1 parent 6f2a14e commit 0962732
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arrow-schema/src/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ impl Field {
| DataType::FixedSizeList(field, _)
| DataType::Map(field, _) => field.fields(),
DataType::Dictionary(_, value_field) => Field::_fields(value_field.as_ref()),
DataType::RunEndEncoded(_, field) => field.fields(),
_ => vec![],
}
}
Expand Down

0 comments on commit 0962732

Please sign in to comment.