Kontinuation opened a new pull request, #690: URL: https://github.com/apache/sedona-db/pull/690
## Summary - The `round_robin_partitioning` test was flaky because it compared `Vec<RecordBatch>` with `assert_eq!`, which is order-sensitive. With round-robin partitioning, chunks are distributed across concurrent partitions whose output order is non-deterministic. - Fix by concatenating all batches into a single `RecordBatch` and sorting by the `x` column before comparing, making the assertion independent of batch boundaries and partition ordering. - Switches to `plain` geometry encoding in the test so we have a sortable `x` column available (geometry encoding doesn't affect partitioning logic). -- 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]
