yoavcloud opened a new pull request, #2300:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2300

   Add support for implicit aliases of wildcard select items, for example: 
`SELECT c.* cols FROM tbl`, which previously the parser would fail on, but are 
accepted by the dialects.
   
   Semantically, however, it looks like the databases are ignoring this 
construct. For example, when running the following statement, PostgreSQL fails 
with the error `column "c1" does not exist`:
   ```sql
   SELECT c.* AS c1
   FROM customers AS c
   ORDER BY c1;
   ```
   


-- 
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