Opened 9 years ago
Last modified 9 years ago
#25599 closed Bug
__iexact filter matches strings of different length — at Version 2
Description (last modified by ) ¶
I would expect that the __iexact
filter for querying models only results in string matches that possibly differ in case, however, it also matches prefixes...
MyModel.objects.filter(name__iexact='king').all() [<MyModel: KING>, <MyModel: King of Spain>, <MyModel: King of Holland>]
This looks more like __icontains
to me... I expected only [<MyModel: KING>]
Change History (2)
comment:1 by , 9 years ago
Type: | Uncategorized → Bug |
---|
comment:2 by , 9 years ago
Description: | modified (diff) |
---|
Note:
See TracTickets
for help on using tickets.
What database are you using?