不要怂,就是干,撸起袖子干!

Commit 794176e7 by Ruslan Kovtun

Give more meaning for operator 'or'

`Projects`.`id` IN (1,2,3) OR `Projects`.`id` < 10
has no sense, second part should be enough.

That's why I replaced `lt` lookup with `gt` to generate following SQL
`Projects`.`id` IN (1,2,3) OR `Projects`.`id` > 10
which have much more sense.
1 parent 6401eba4
Showing with 0 additions and 0 deletions
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!