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

Fix: Where clauses with named arguments may cause generation of unintended queries #4937

Merged
merged 1 commit into from
Dec 21, 2021

Conversation

emregullu
Copy link
Contributor

@emregullu emregullu commented Dec 18, 2021

  • Do only one thing
  • Non breaking API changes
  • Tested

What did this pull request do?

During the building of Where clauses, the NamedExpr type is omitted while determining whether the expression should be wrapped in parentheses. Therefore, although it is required, Where clauses containing both named arguments and OR conditions are not wrapped, and this causes the generation of different queries than desired. This pull request tries to fix this issue.

User Case Description

eg:

For the gorm statement below,

db.Model(&User{}).Where("role = @role1 OR role = @role2",
map[string]interface{}{"role1": "admin", "role2": "super_admin"}).Find(&results)

the following query is generated.

SELECT * FROM users WHERE role = 'admin' or role = 'super_admin' AND users.deleted_at IS NULL

Due to the precedence of AND over OR, the query will be interpreted like

`WHERE role = 'admin' or (role = 'super_admin' AND users.deleted_at IS NULL)` 

instead of

`WHERE (role = 'admin' or role = 'super_admin') AND users.deleted_at IS NULL` 

which is actually intended, and it leads to getting softly deleted admin users without being aware, which may also be dangerous.

Copy link

@sryavuz sryavuz left a comment

Choose a reason for hiding this comment

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

Thank you for the catch, LGTM 👍

@jinzhu jinzhu merged commit 2c3fc2d into go-gorm:master Dec 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants