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
A regression was introduced in 1.9.5.
The query that looks like this:
SELECT COUNT(*) FROM (SELECT * FROM COMPANY)
does not compile. Need a mandatory alias:
SELECT COUNT(*) FROM (SELECT * FROM COMPANY) query
pramen { }
A clear and concise description of what you expected to happen.
The text was updated successfully, but these errors were encountered:
#483 Fix count() queries with MS SQL and other SQL dialects.
2d4083f
518d96d
Successfully merging a pull request may close this issue.
Describe the bug
A regression was introduced in 1.9.5.
The query that looks like this:
does not compile. Need a mandatory alias:
Code and/or configuration snippet that caused the issue
pramen { }
Expected behavior
A clear and concise description of what you expected to happen.
Context
The text was updated successfully, but these errors were encountered: