Replies: 1 comment
-
Here's a quick repro of the issue:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello 👋
After trawling through the code, trying to figure out how to perform a prefix search, I've realized that this this dictionary maps
orm
operators tosqlalchemy
methods. Note thatiexact
,contains
andicontains
reference some variant oflike
.Meanwhile, this code escapes the search string when using
like
- but only for the operatorscontains
andicontains
.So to my knowledge:
LIKE
operator (PR: Feature: Adding aLIKE
operator #87)iexact
is buggy - since it doesn't escape wildcards; for instancefind%
matchesfind_the_second_bug
(PR: Fixing iexact behaviour #86)Beta Was this translation helpful? Give feedback.
All reactions