@@ -107,7 +107,7 @@ pub struct HashJoin {
107
107
// a HashMap for mapping the column indexes to the BlockEntry indexes in DataBlock.
108
108
pub build_side_cache_info : Option < ( usize , HashMap < IndexType , usize > ) > ,
109
109
110
- pub runtime_filter_plan : PhysicalRuntimeFilters ,
110
+ pub runtime_filter : PhysicalRuntimeFilters ,
111
111
}
112
112
113
113
impl HashJoin {
@@ -815,7 +815,7 @@ impl PhysicalPlanBuilder {
815
815
probe_to_build : Vec < ( usize , ( bool , bool ) ) > ,
816
816
output_schema : DataSchemaRef ,
817
817
build_side_cache_info : Option < ( usize , HashMap < IndexType , usize > ) > ,
818
- runtime_filter_plan : PhysicalRuntimeFilters ,
818
+ runtime_filter : PhysicalRuntimeFilters ,
819
819
stat_info : PlanStatsInfo ,
820
820
) -> Result < PhysicalPlan > {
821
821
Ok ( PhysicalPlan :: HashJoin ( HashJoin {
@@ -839,7 +839,7 @@ impl PhysicalPlanBuilder {
839
839
broadcast : is_broadcast,
840
840
single_to_inner : join. single_to_inner . clone ( ) ,
841
841
build_side_cache_info,
842
- runtime_filter_plan ,
842
+ runtime_filter ,
843
843
} ) )
844
844
}
845
845
@@ -915,7 +915,7 @@ impl PhysicalPlanBuilder {
915
915
let non_equi_conditions = self . process_non_equi_conditions ( join, & merged_schema) ?;
916
916
917
917
// Step 11: Build runtime filter
918
- let runtime_filter_desc = self
918
+ let runtime_filter = self
919
919
. build_runtime_filter (
920
920
join,
921
921
s_expr,
@@ -941,7 +941,7 @@ impl PhysicalPlanBuilder {
941
941
probe_to_build,
942
942
output_schema,
943
943
build_side_cache_info,
944
- runtime_filter_desc ,
944
+ runtime_filter ,
945
945
stat_info,
946
946
)
947
947
}
0 commit comments