Kontinuation commented on code in PR #598: URL: https://github.com/apache/sedona-db/pull/598#discussion_r2798864980
########## rust/sedona-spatial-join/bench/partitioning/common.rs: ########## @@ -16,6 +16,10 @@ // under the License. //! Shared helpers for partitioner benchmarks. +//! +//! This module is included (`mod common;`) by multiple independent bench binaries, +//! not all of which use every item. Suppress dead-code warnings accordingly. +#![allow(dead_code)] Review Comment: Moved to src/utils. Also switched from rand to fastrand to avoid introducing new dependency. -- 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]
