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 15, 2024
1 parent 3fb0d58 commit ea3b6b0
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 ea3b6b0

Please sign in to comment.