Skip to content

Commit

Permalink
Make ArrayBuilder also Sync (#5353)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvic authored Jan 31, 2024
1 parent 1237c89 commit f5097b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow-array/src/builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ use std::any::Any;
/// "🍎"
/// );
/// ```
pub trait ArrayBuilder: Any + Send {
pub trait ArrayBuilder: Any + Send + Sync {
/// Returns the number of array slots in the builder
fn len(&self) -> usize;

Expand Down

0 comments on commit f5097b0

Please sign in to comment.