rtyler opened a new issue, #3949: URL: https://github.com/apache/arrow-rs/issues/3949
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** I have found that creating `serde_json::Value` objects is a *lot* easier than trying to construct `RecordBatch` objects. This is especially useful when using serde's deserialization code for data ingestion. Crates like [serde_arrow}(https://crates.io/crates/serde_arrow) are out-dated and add unnecessary complexity I have taken to using Decoder to convert Value objects to RecordBatchs easily. **Describe the solution you'd like** Renaming or moving the Decoder to where it's not considered for use on deserializing raw JSON buffers, e.g. the BufReader approach that it uses now, but rather can be used for naturally converting pre-deserialized JSON `Value` objects. **Describe alternatives you've considered** If Decoder gets bounced out of the repo, I would probably just refactor it into its own crate and push that :smile: -- 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]
