andygrove commented on code in PR #3519: URL: https://github.com/apache/arrow-datafusion/pull/3519#discussion_r973515561
########## datafusion/core/src/lib.rs: ########## @@ -161,11 +161,17 @@ //! * Projection: [`ProjectionExec`](physical_plan::projection::ProjectionExec) //! * Filter: [`FilterExec`](physical_plan::filter::FilterExec) //! * Grouped and non-grouped aggregations: [`AggregateExec`](physical_plan::aggregates::AggregateExec) +//! * Hash Join: [`HashJoinExec`](physical_plan::hash_join::HashJoinExec) +//! * Cross Join: [`HashJoinExec`](physical_plan::cross_join::CrossJoinExec) +//! * Sort Merge Join: [`SortExec`](physical_plan::sort_merge_join::SortMergeJoinExec) Review Comment: Wow, I really messed this up. Sorry for the extra work. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org