Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make HashJoinExec::join_schema public (#12807)
* Make HashJoinExec::join_schema public It is needed by physical optimizers that want to replace the HashJoin with a different type of join, as they need to replace it with an equivalent projection, but HashJoinExec::projection could not be used to build it because it refers to indices in HashJoinExec::join_schema. * Replace it with an accessor
- Loading branch information