jhorstmann opened a new pull request #1222: URL: https://github.com/apache/arrow-rs/pull/1222
# Which issue does this PR close? <!--- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> Closes #1171. # Rationale for this change The `memory-check` feature was supposed to help in finding memory leaks, but the corresponding test was broken for a long time, showing that it is not really used. At the same time, the actual tracking was not behind a feature gate, adding synchronization overhead to every allocation. # What changes are included in this PR? Removes the feature gate and the `AtomicISize` used for tracking. # Are there any user-facing changes? Not sure whether this should really be considered a breaking change. The only use of the feature in the `arrow-rs` code base was for a unit test, so there is no change in behavior. If someone has a dependency on `arrow-rs` with the feature active, they would need to remove that feature from their `Cargo.toml`, but there would be no other code changes required. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org