BenSatori opened a new pull request, #2512: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2512
Adds support for PostgreSQL's `TABLE` query command, which is syntactic sugar for selecting all rows from a table. Examples that now parse: ```sql TABLE customers ORDER BY contact_name LIMIT 1; TABLE ONLY customers; TABLE customers *; ``` This also supports `TABLE` in query-expression positions, such as subqueries, through the existing query body parser. PostgreSQL docs: https://www.postgresql.org/docs/current/sql-select.html AI assistance was used in preparing this change. -- 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]
