Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Aug 3, 2024
1 parent dd4118c commit 0155f25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion kernel/src/engine/arrow_conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ impl TryFrom<&MapType> for ArrowField {
MAP_ROOT_DEFAULT,
ArrowDataType::Struct(
vec![
ArrowField::new(MAP_KEY_DEFAULT, ArrowDataType::try_from(a.key_type())?, false),
ArrowField::new(
MAP_KEY_DEFAULT,
ArrowDataType::try_from(a.key_type())?,
false,
),
ArrowField::new(
MAP_VALUE_DEFAULT,
ArrowDataType::try_from(a.value_type())?,
Expand Down

0 comments on commit 0155f25

Please sign in to comment.