Vedin opened a new pull request, #1849:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1849
UNPIVOT structure is changed from 2023 and now supports INCLUDE or EXCLUDE
NULLS.
Full syntax now looks like:
```
SELECT ...
FROM ...
UNPIVOT [ { INCLUDE | EXCLUDE } NULLS ]
( <value_column>
FOR <name_column> IN ( <column_list> ) )
[ ... ]
```
So, I added this functionality.
--
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]