File tree Expand file tree Collapse file tree
native-engine/auron-planner/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -232,6 +232,7 @@ impl PhysicalPlanner {
232232 . map_err ( |_| proto_error ( "invalid BuildSide" ) ) ?,
233233 false ,
234234 None ,
235+ false ,
235236 ) ?) )
236237 }
237238 PhysicalPlanType :: SortMergeJoin ( sort_merge_join) => {
@@ -378,6 +379,7 @@ impl PhysicalPlanner {
378379 . expect ( "invalid BroadcastSide" ) ;
379380
380381 let cached_build_hash_map_id = broadcast_join. cached_build_hash_map_id . clone ( ) ;
382+ let is_null_aware_anti_join = broadcast_join. is_null_aware_anti_join ;
381383
382384 Ok ( Arc :: new ( BroadcastJoinExec :: try_new (
383385 schema,
@@ -392,6 +394,7 @@ impl PhysicalPlanner {
392394 . map_err ( |_| proto_error ( "invalid BroadcastSide" ) ) ?,
393395 true ,
394396 Some ( cached_build_hash_map_id) ,
397+ is_null_aware_anti_join,
395398 ) ?) )
396399 }
397400 PhysicalPlanType :: Union ( union) => {
You can’t perform that action at this time.
0 commit comments