Max-Meldrum opened a new issue #290: URL: https://github.com/apache/arrow-rs/issues/290
Problem: I'm using a ``StructBuilder`` in [Arcon](https://github.com/cda-group/arcon) to build up Arrow tables. The threading model ensures exclusive access to the builder but may move it across threads. The main problem is that ``ArrayBuilder`` does not implement ``Send`` so it fails to compile.. Solution: ```rust // Old pub trait ArrayBuilder: Any { .... } // New pub trait ArrayBuilder: Any + Send { .... } ``` -- 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. For queries about this service, please contact Infrastructure at: [email protected]
