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
If an evaluation isn't used, it may be able to be avoided, something like:
SELECT column FROM ( SELECT MD5(column) AS hash, column FROM table )
The MD5 call isn't used so the effort to evaluate isn't wasted.
The text was updated successfully, but these errors were encountered:
#1984
e1b9730
Merge pull request #2049 from mabel-dev/#1984
a3e9898
Successfully merging a pull request may close this issue.
If an evaluation isn't used, it may be able to be avoided, something like:
The MD5 call isn't used so the effort to evaluate isn't wasted.
The text was updated successfully, but these errors were encountered: