Skip to content

Commit 3864b11

Browse files
authored
Fix visibility of swap_hash_join (#13899)
1 parent e99e02b commit 3864b11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/core/src/physical_optimizer/join_selection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ fn swap_join_projection(
176176
/// This function swaps the inputs of the given join operator.
177177
/// This function is public so other downstream projects can use it
178178
/// to construct `HashJoinExec` with right side as the build side.
179-
pub(crate) fn swap_hash_join(
179+
pub fn swap_hash_join(
180180
hash_join: &HashJoinExec,
181181
partition_mode: PartitionMode,
182182
) -> Result<Arc<dyn ExecutionPlan>> {

0 commit comments

Comments
 (0)