Skip to content

Commit 818b1d2

Browse files
Doc tests
1 parent 6a6106c commit 818b1d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

datafusion/src/logical_plan/plan.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ impl LogicalPlan {
551551
/// // Format using display_indent
552552
/// let display_string = format!("{}", plan.display_indent());
553553
///
554-
/// assert_eq!("Filter: #foo_csv.id Eq Int32(5)\
554+
/// assert_eq!("Filter: #foo_csv.id = Int32(5)\
555555
/// \n TableScan: foo_csv projection=None",
556556
/// display_string);
557557
/// ```
@@ -575,7 +575,7 @@ impl LogicalPlan {
575575
///
576576
/// ```text
577577
/// Projection: #employee.id [id:Int32]\
578-
/// Filter: #employee.state Eq Utf8(\"CO\") [id:Int32, state:Utf8]\
578+
/// Filter: #employee.state = Utf8(\"CO\") [id:Int32, state:Utf8]\
579579
/// TableScan: employee projection=Some([0, 3]) [id:Int32, state:Utf8]";
580580
/// ```
581581
///
@@ -592,7 +592,7 @@ impl LogicalPlan {
592592
/// // Format using display_indent_schema
593593
/// let display_string = format!("{}", plan.display_indent_schema());
594594
///
595-
/// assert_eq!("Filter: #foo_csv.id Eq Int32(5) [id:Int32]\
595+
/// assert_eq!("Filter: #foo_csv.id = Int32(5) [id:Int32]\
596596
/// \n TableScan: foo_csv projection=None [id:Int32]",
597597
/// display_string);
598598
/// ```

0 commit comments

Comments
 (0)