-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Expression Implementation #5098
Comments
Do you have an example query that could benefit from implementing this? When do we try to execute this instead of passing it down to the actual MySQL engine? |
There are a few in https://github.com/vitessio/vitess/blob/master/go/vt/vtgate/planbuilder/testdata/unsupported_cases.txt. For example:
|
Re-opening since multiplication and division are not yet complete. |
@deepthi I see the support is added now. |
🎉 |
Feature Description
Implement the expression logic needed to match the MySQL Expression Engine. The following are expressions that need to be supported
1 + 1
1 - 1
1 * 1
1 / 1
Long term the full list of expressions to handle can be found here https://dev.mysql.com/doc/refman/5.6/en/non-typed-operators.html
Use Case(s)
Queries that must evaluate these expressions
The text was updated successfully, but these errors were encountered: