We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nested /* comments used to be parsed as such by sqlparser, but have been broken by the 0.54 release.
/*
The following works in postgresql and mssql:
select /* /* comment */ */ 1;
and it used to be parsed correctly by sqlparser, but now is not.
Initially reported in sqlpage/SQLPage#834
The text was updated successfully, but these errors were encountered:
Nested comments are explicitly supported in Microsoft SQL Server: https://learn.microsoft.com/en-us/sql/t-sql/language-elements/slash-star-comment-transact-sql
Sorry, something went wrong.
re-add support for nested comments in mssql
c6e374f
fix apache#1753
Successfully merging a pull request may close this issue.
Nested
/*
comments used to be parsed as such by sqlparser, but have been broken by the 0.54 release.The following works in postgresql and mssql:
and it used to be parsed correctly by sqlparser, but now is not.
Initially reported in sqlpage/SQLPage#834
The text was updated successfully, but these errors were encountered: