romanb opened a new pull request, #2293: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2293
Though not explicitly mentioned in the official docs, it is valid SQL for Redshift, i.e. these are equivalent: ```sql SELECT FIRST_VALUE(1 IGNORE NULLS) OVER () FROM (SELECT 1) t SELECT FIRST_VALUE(1) IGNORE NULLS OVER () FROM (SELECT 1) t ``` -- 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]
