-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(hana): improve search inside where clause detection (#538)
Improved comparison injection for `HANA` Service. Now when `and` / `or` are found inside the `where` expression before any other comparator it will add `= true` to the end of the expression. ``` ( x=y or z) -- has to always be compared inside the expression ( x=y or z=true) (z) -- can be checked outside of the expression (z)=true / (z=true) ``` --------- Co-authored-by: Johannes Vogel <31311694+johannes-vogel@users.noreply.github.com>
- Loading branch information
1 parent
dfd2f0c
commit 51b8af3
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters