alamb opened a new issue, #4780: URL: https://github.com/apache/arrow-rs/issues/4780
Very similar to https://github.com/apache/arrow-rs/issues/4779 but I think this is more serious **Describe the bug** The newly introduced `Datum` is not exported in `arrow` even though it is part of the signature of the new compute kernels such as https://docs.rs/arrow/latest/arrow/compute/kernels/cmp/fn.eq.html This means that to use some of the functions in the `arrow` crate, a user has to use `arrow_array` directly, which is inconvenient, or use a deprecated method. **To Reproduce** Search for `Datum` in arrow: https://docs.rs/arrow/latest/arrow/index.html?search=datum It only appears in https://docs.rs/arrow-array/46.0.0/arrow_array/trait.Datum.html **Expected behavior** A trait used in the `arrow` crate API should also be exported in that same crate. **Additional context** Found while updating https://github.com/influxdata/influxdb_iox/pull/8577 -- 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]
