simonvandel commented on code in PR #17278: URL: https://github.com/apache/datafusion/pull/17278#discussion_r2366005379
########## docs/source/user-guide/sql/operators.md: ########## @@ -613,3 +613,98 @@ bar") | bar | +-----------------+ ``` + +## Pipe operators + +Some SQL dialects (e.g. BigQuery) support the pipe operator `|>`. +The SQL dialect can be set like this: + +```sql +set datafusion.sql_parser.dialect = 'BigQuery'; +``` + +DataFusion currently supports the following pipe operators: + +- [WHERE](#pipe_where) +- [ORDER BY](#pipe_order_by) +- [LIMIT](#pipe_limit) +- [SELECT](#pipe_select) +- [EXTEND](#pipe_extend) + +(pipe_where)= + +### WHERE + +```sql +> select * from range(0,10) Review Comment: Good point, fixed in [1b699d3](https://github.com/apache/datafusion/pull/17278/commits/1b699d39d126662f8d65f131e4fcecf66e8a5925) -- 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]
