Skip to content
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

SQL: Fix issue with negative literels and parentheses #48113

Merged
merged 2 commits into from
Oct 16, 2019

Conversation

matriv
Copy link
Contributor

@matriv matriv commented Oct 16, 2019

Previously, when a numeric literal was enclosed in parentheses and then
negated, the negation was lost and the number was considered positive, e.g.:
-(5) was considered as 5 instead of -5
- ( (1.28) ) was considered as 1.28 instead of -1.28

Fixes: #48009

Previously when a numeric literal was enclosed in parentheses and then
negated, the negation was lost and the number was considered positive, e.g.:
`-(5)` was considered as `5` instead of `-5`
`- ( (1.28) )` was considered as `1.28` instead of `-1.28`

Fixes: elastic#48009
@elasticmachine
Copy link
Collaborator

Pinging @elastic/es-search (:Search/SQL)

@matriv
Copy link
Contributor Author

matriv commented Oct 16, 2019

@elasticmachine run elasticsearch-ci/packaging-sample-matrix

Copy link
Member

@costin costin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Contributor

@astefan astefan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@matriv
Copy link
Contributor Author

matriv commented Oct 16, 2019

@elasticmachine run elasticsearch-ci/packaging-sample-matrix
@elasticmachine run elasticsearch-ci/packaging-sample

@matriv
Copy link
Contributor Author

matriv commented Oct 16, 2019

@elasticmachine run elasticsearch-ci/packaging-sample-matrix

@matriv matriv merged commit 4dee4bf into elastic:master Oct 16, 2019
@matriv matriv deleted the fix-48009 branch October 16, 2019 10:46
matriv added a commit that referenced this pull request Oct 16, 2019
Previously when a numeric literal was enclosed in parentheses and then
negated, the negation was lost and the number was considered positive, e.g.:
`-(5)` was considered as `5` instead of `-5`
`- ( (1.28) )` was considered as `1.28` instead of `-1.28`

Fixes: #48009

(cherry picked from commit 4dee4bf)
matriv added a commit that referenced this pull request Oct 16, 2019
Previously when a numeric literal was enclosed in parentheses and then
negated, the negation was lost and the number was considered positive, e.g.:
`-(5)` was considered as `5` instead of `-5`
`- ( (1.28) )` was considered as `1.28` instead of `-1.28`

Fixes: #48009

(cherry picked from commit 4dee4bf)
matriv added a commit that referenced this pull request Oct 16, 2019
Previously when a numeric literal was enclosed in parentheses and then
negated, the negation was lost and the number was considered positive, e.g.:
`-(5)` was considered as `5` instead of `-5`
`- ( (1.28) )` was considered as `1.28` instead of `-1.28`

Fixes: #48009

(cherry picked from commit 4dee4bf)
@matriv matriv added v6.8.5 and removed v6.8.4 labels Oct 16, 2019
@tomcallahan tomcallahan added v7.4.2 and removed v7.4.1 labels Oct 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

SQL: negative numbers surrounded by round brackets are not treated as negative
6 participants