Kontinuation commented on code in PR #277:
URL: https://github.com/apache/sedona-db/pull/277#discussion_r2503967394
##########
rust/sedona-spatial-join/src/exec.rs:
##########
@@ -546,24 +543,21 @@ impl SpatialJoinExec {
let num_partitions =
build_side.output_partitioning().partition_count();
let mut build_streams = Vec::with_capacity(num_partitions);
- let mut build_metrics = Vec::with_capacity(num_partitions);
for k in 0..num_partitions {
let stream = build_side.execute(k,
Arc::clone(&context))?;
build_streams.push(stream);
- build_metrics.push(SpatialJoinBuildMetrics::new(k,
&self.metrics));
}
let probe_thread_count =
self.right.output_partitioning().partition_count();
Review Comment:
Thank you for catching this.
--
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]