andygrove opened a new pull request, #3772: URL: https://github.com/apache/datafusion-comet/pull/3772
## Summary Reorganizes the `native/shuffle` crate to group similar code together and improve module clarity: - Move `CompressionCodec` and `ShuffleBlockWriter` from `codec.rs` into `writers/shuffle_block_writer.rs`, inlining the codec enum alongside its primary consumer - Move `Checksum` from `codec.rs` into `writers/checksum.rs` to keep all write-path types together - Rename `codec.rs` → `ipc.rs` (now solely contains `read_ipc_compressed`) - Rename `writers/partition_writer.rs` → `writers/spill.rs` to better reflect its spill-management responsibility - Extract `SparkUnsafeObject` trait and `impl_primitive_accessors\!` macro from the overloaded `spark_unsafe/row.rs` into `spark_unsafe/unsafe_object.rs` - Extract `ShufflePartitioner` trait from `partitioners/mod.rs` into `partitioners/traits.rs` - Add concise rustdoc comments to all structs, enums, and traits that were missing them No functional changes — all existing tests pass. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
