Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Lanham committed Sep 12, 2024
1 parent a0eeae5 commit b4efe2f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kernel/src/engine/arrow_expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -462,12 +462,14 @@ fn apply_to_col(
key_field.data_type(),
msa_cols[0].as_ref(),
&kernel_map_type.key_type,
)?.unwrap_or(msa_cols[0].clone());
)?
.unwrap_or(msa_cols[0].clone());
let transformed_values = apply_to_col(
value_field.data_type(),
msa_cols[1].as_ref(),
&kernel_map_type.value_type,
)?.unwrap_or(msa_cols[1].clone());
)?
.unwrap_or(msa_cols[1].clone());
let transformed_struct_fields = vec![
key_field
.as_ref()
Expand Down

0 comments on commit b4efe2f

Please sign in to comment.