Opened 18 years ago
Closed 18 years ago
#2379 closed defect (fixed)
[patch] [3248] breaks full-text search
Reported by: | Tim Keating | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Change [3248] results in full-text search queries (e.g. string__search: 'foo'
) getting assigned a lookup_type of 'exact'. I haven't quite managed to untangle why, but this causes lookup_inner to break around line 847, similar to what is reported with #2287 and #2348. This one-liner fixes the problem, but it may not be exactly the right thing to do here.
Attachments (1)
Change History (2)
by , 18 years ago
Attachment: | patch.diff added |
---|
comment:1 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [3400]) Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken by [3248]. Thanks, Tim Keating