Opened 15 years ago

Closed 15 years ago

Last modified 13 years ago

#11286 closed (fixed)

Dumpdata management command does not use _default_manager

Reported by: Marc Remolt Owned by: nobody
Component: Core (Other) Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In django/core/management/commands/dumpdata.py on line 75f:

for model in model_list:
    objects.extend(model.objects.all())

As I understand it, Django core now exclusively uses model_default_manager instead of the hard coded model.objects, so there is no reason to keep is here.

Change History (3)

comment:1 by Karen Tracey, 15 years ago

Triage Stage: UnreviewedAccepted

This does seem to be an inadvertent regression of an earlier fix, as noted here:

http://code.djangoproject.com/ticket/6155#comment:6

comment:2 by Russell Keith-Magee, 15 years ago

Resolution: fixed
Status: newclosed

(In [10967]) Fixed #11286 -- Ensured that dumpdata uses the default manager, rather than always using the manager called objects. Thanks to Marc Remolt for the report.

comment:3 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top