Skip to content

Commit

Permalink
amey/serde-for-arrow-arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
ameyc committed Sep 30, 2024
1 parent 59fde24 commit a2fd9ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/src/utils/serialization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ fn serialize_array_data(
child_data: array_data
.child_data()
.iter()
.map(|c| serialize_array_data(c))
.map(serialize_array_data)
.collect::<Result<Vec<_>, _>>()?,
})
}
Expand Down Expand Up @@ -178,7 +178,7 @@ fn deserialize_array_data(
let child_data: Vec<ArrayData> = serialized
.child_data
.iter()
.map(|c| deserialize_array_data(c))
.map(deserialize_array_data)
.collect::<Result<Vec<_>, _>>()?;

let null_buffer = serialized
Expand Down

0 comments on commit a2fd9ee

Please sign in to comment.