Skip to content

Commit 4639b3c

Browse files
committed
fmt
1 parent 6aba278 commit 4639b3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/optimizer/src/push_down_sort.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ use datafusion_expr::{Expr, LogicalPlanContext, ScanOrdering, SortExpr};
4141
/// This means that the [`TableProvider`] can choose to ignore the preferred ordering
4242
/// or only partially satisfy it. The original `Sort` node ensures that the final output
4343
/// ordering is always correct.
44-
///
44+
///
4545
/// Physical optimizer rules can later remove redundant sorts if they can prove
4646
/// that the output is already sorted as required.
4747
///
@@ -53,7 +53,7 @@ use datafusion_expr::{Expr, LogicalPlanContext, ScanOrdering, SortExpr};
5353
/// TableScan: test
5454
///
5555
/// After optimization:
56-
/// Sort: test.a ASC NULLS LAST
56+
/// Sort: test.a ASC NULLS LAST
5757
/// TableScan: test preferred_ordering=[test.a ASC NULLS LAST]
5858
/// ```
5959
#[derive(Default, Debug)]

0 commit comments

Comments
 (0)