You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 19, 2025. It is now read-only.
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 to sqlalchemy methods. Note that iexact, contains and icontains reference some variant of like.
Meanwhile, this code escapes the search string when using like - but only for the operators contains and icontains.
Hello 👋
After trawling through the code, trying to figure out how to perform a prefix search, I've realized that this this dictionary maps
ormoperators tosqlalchemymethods. Note thatiexact,containsandicontainsreference some variant oflike.Meanwhile, this code escapes the search string when using
like- but only for the operatorscontainsandicontains.So to my knowledge:
LIKEoperator (PR: Feature: Adding aLIKEoperator #87)iexactis buggy - since it doesn't escape wildcards; for instancefind%matchesfind_the_second_bug(PR: Fixing iexact behaviour #86)