Skip to content

Commit bd82932

Browse files
committed
fix new occurs
Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
1 parent 7116861 commit bd82932

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

datafusion/core/tests/physical_optimizer/filter_pushdown/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

datafusion/physical-plan/src/joins/join_filter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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`
3838
impl Display for JoinFilter {
3939
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
4040
self.expression.fmt_sql(f)

datafusion/physical-plan/src/joins/nested_loop_join.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)