File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
datafusion/src/logical_plan Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 /// ```
You can’t perform that action at this time.
0 commit comments