yoavcloud opened a new pull request, #2167:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2167
We've encountered a statement of the following form that failed to parse due
to a missing comma, that is accepted by Redshift:
```sql
SELECT 'ab' IN (
'a'
'b'
)
```
Turns out Redshift considers the `'a' <NEWLINE> 'b'` as a concatenation, so
it's evaluted as `'ab'`. The fix here is to parse this construct as `'ab'`.
--
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]