tustvold opened a new issue, #1843: URL: https://github.com/apache/arrow-rs/issues/1843
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** The arrow::array::builder module is implemented as one immense builder.rs file, this has a number of drawbacks: * Types have access to each others private fields, which can make invariants hard to reason about #1842 * The file is incredibly unwieldy * It is unclear what test coverage each of the builders have **Describe the solution you'd like** I would like to split out the various builders from `builder.rs` into their own submodules, e.g. ``` builder/mod.rs builder/buffer_builder.rs builder/boolean_builder.rs ... ``` The top-level `builder/mod.rs` can then re-export each of these with `pub use` to avoid introducing breaking changes. **Describe alternatives you've considered** We could not do this -- 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]
