Copilot commented on code in PR #16316:
URL: https://github.com/apache/datafusion/pull/16316#discussion_r2135446473


##########
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:
   [nitpick] Use consistent uppercase SQL keywords; change 'from' to 'FROM' to 
match other examples.
   ```suggestion
   SELECT * FROM x CROSS JOIN x y;
   ```



-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to