Kontinuation commented on code in PR #563:
URL: https://github.com/apache/sedona-db/pull/563#discussion_r2748718275
##########
rust/sedona-spatial-join/src/stream.rs:
##########
@@ -524,6 +759,19 @@ impl SpatialJoinStream {
spatial_index.merge_probe_stats(stats);
}
+ let visited_probe_side = if matches!(partition_desc.partition,
SpatialPartition::Multi) {
+ self.visited_multi_probe_side.clone()
+ } else {
+ None
+ };
Review Comment:
This is not the case. It only happens when creating the iterator. The hot
inner loop happens inside the iterator.
--
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]