Opened 8 years ago
Closed 8 years ago
#28723 closed Bug (fixed)
RelatedManager.get_prefetch_queryset returns "wrong" cache_name
| Reported by: | Mike Hansen | Owned by: | nobody |
|---|---|---|---|
| Component: | Database layer (models, ORM) | Version: | dev |
| Severity: | Normal | Keywords: | |
| Cc: | Triage Stage: | Accepted | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description (last modified by )
Currently, RelatedManager.get_prefetch_queryset returns self.field.related_query_name() as the cache_name. In the case where no related_name has been set on the ForeignKey, then this does not match with the through_attr used by get_prefetcher.
Using the models in tests/prefetch_related/models.py,
BookWithYear.objects.prefetch_related('bookreview_set')
will use a through_attr of "bookreview_set", but "bookreview" is what will be placed in _prefetched_objects_cache.
I think related_manager.field.remote_field.get_accessor_name() should be used instead.
https://github.com/django/django/pull/9259 is a pull request which fixes this issue
Change History (9)
comment:1 by , 8 years ago
| Has patch: | set |
|---|
comment:2 by , 8 years ago
| Description: | modified (diff) |
|---|
comment:3 by , 8 years ago
| Description: | modified (diff) |
|---|---|
| Type: | Uncategorized → Bug |
comment:4 by , 8 years ago
| Triage Stage: | Unreviewed → Ready for checkin |
|---|
comment:7 by , 8 years ago
| Resolution: | fixed |
|---|---|
| Status: | closed → new |
| Triage Stage: | Ready for checkin → Accepted |
I believe this change is causing a regression as the _remove_prefetched_objects() method was not updated to use the new cache name. See line:
I've created a PR to fix it.
comment:9 by , 8 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
A pull request for this can be found at https://github.com/django/django/pull/9259
I wasn't sure on the best location for these tests so any guidance would be helpful.