jonathanc-n commented on code in PR #16316:
URL: https://github.com/apache/datafusion/pull/16316#discussion_r2136098201


##########
docs/source/user-guide/sql/select.md:
##########
@@ -170,18 +170,72 @@ select * from x natural join x y;
 
 ### CROSS JOIN
 
-A cross join produces a cartesian product that matches every row in the left 
side of the join with every row in the
+A `CROSS JOIN` produces a cartesian product that matches every row in the left 
side of the join with every row in the
 right side of the join.
 
 ```sql
-select * from x cross join x y;
+SELECT * from x CROSS JOIN x y;

Review Comment:
   oops missed that one



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to