This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new f5097b07cb Make ArrayBuilder also Sync (#5353)
f5097b07cb is described below

commit f5097b07cb9abe874d00cb6befdb0215cefe219d
Author: Damir Vandic <[email protected]>
AuthorDate: Wed Jan 31 12:50:57 2024 +0100

    Make ArrayBuilder also Sync (#5353)
---
 arrow-array/src/builder/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow-array/src/builder/mod.rs b/arrow-array/src/builder/mod.rs
index 8382f7af87..d33e565a86 100644
--- a/arrow-array/src/builder/mod.rs
+++ b/arrow-array/src/builder/mod.rs
@@ -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;
 

Reply via email to