-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
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
ORDER BY
is dropped by three different VisitorTransforms
#417
Comments
This was referenced Jun 14, 2021
dlurton
added a commit
that referenced
this issue
Jun 15, 2021
Fixes #417 Which then prevents the EvaluationException from being thrown by EvaluatingCompiler due to not having evaluation support for ORDER BY, effectively ignoring the ORDER BY clause.
dlurton
added a commit
that referenced
this issue
Jun 15, 2021
Fixes #417 Dropping the `ORDER BY` clause prevents the EvaluationException from being thrown by EvaluatingCompiler due to not having evaluation support for ORDER BY, effectively ignoring the ORDER BY clause.
dlurton
added a commit
that referenced
this issue
Jun 15, 2021
Fixes #417 Dropping the ORDER BY clause prevents the EvaluationException from being thrown by EvaluatingCompiler due to not having evaluation support for ORDER BY, effectively ignoring the ORDER BY clause.
dlurton
added a commit
that referenced
this issue
Jun 15, 2021
Fixes #417 Dropping the ORDER BY clause prevents the EvaluationException from being thrown by EvaluatingCompiler due to not having evaluation support for ORDER BY, effectively ignoring the ORDER BY clause.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If a user supplies an
ORDER BY
clause, it is simply ignored and they don't get an exception to tell them that the evaluator doesn't supportORDER BY
.ORDER BY
is dropped here:In addition to fixing each of these, to verify that we're not dropping
ORDER BY
anywhere else, we should add anEvaluatingCompilerTest
that ensures anErrorCode.EVALUATOR_FEATURE_NOT_SUPPORTED_YET
is thrown.The text was updated successfully, but these errors were encountered: