File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
core/tests/physical_optimizer/filter_pushdown Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1095,7 +1095,7 @@ async fn test_hashjoin_dynamic_filter_pushdown_partitioned() {
10951095 // Top-level CoalesceBatchesExec
10961096 let cb =
10971097 Arc :: new ( CoalesceBatchesExec :: new ( hash_join, 8192 ) ) as Arc < dyn ExecutionPlan > ;
1098- // Top-level CoalesceParititionsExec
1098+ // Top-level CoalescePartitionsxec
10991099 let cp = Arc :: new ( CoalescePartitionsExec :: new ( cb) ) as Arc < dyn ExecutionPlan > ;
11001100 // Add a sort for determistic output
11011101 let plan = Arc :: new ( SortExec :: new (
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ pub struct JoinFilter {
3434}
3535
3636/// For display in `EXPLAIN` plans, only expression with column names is needed,
37- /// it output expresion like `(col1 + col2) = 0`
37+ /// it output expression like `(col1 + col2) = 0`
3838impl Display for JoinFilter {
3939 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
4040 self . expression . fmt_sql ( f)
Original file line number Diff line number Diff line change @@ -827,7 +827,7 @@ impl Stream for NestedLoopJoinStream {
827827 // side batch, before start joining.
828828 NLJState :: BufferingLeft => {
829829 debug ! ( "[NLJState] Entering: {:?}" , self . state) ;
830- // inside `collect_left_input` (the rountine to buffer build
830+ // inside `collect_left_input` (the routine to buffer build
831831 // -side batches), related metrics except build time will be
832832 // updated.
833833 // stop on drop
@@ -1583,7 +1583,7 @@ fn apply_filter_to_row_join_batch(
15831583/// 30
15841584/// 40
15851585///
1586- /// # After applying it, only index 1 and 3 elemnt in probe_side_batch will be
1586+ /// # After applying it, only index 1 and 3 elements in probe_side_batch will be
15871587/// # kept
15881588/// probe_side_filter:
15891589/// false
You can’t perform that action at this time.
0 commit comments