dvic opened a new issue, #5344: URL: https://github.com/apache/arrow-rs/issues/5344
**Problem** I encountered an issue when working with async functions and storing a `Box<dyn ArrayBuilder>` (explicitly using `Box<dyn ArrayBuilder + Sync>` solved the issue. **Proposed solution** I noticed that currently ArrayBuilder is `ArrayBuilder: Any + Send`, but we can make that into `ArrayBuilder: Any + Send + Sync` can't we? I just tried it locally and `cargo check` didn't give any errors. **Alternatives** Manually specifying the `Sync` bound -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
