Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#8459 closed (fixed)

get_or_create does not pay attention to the instance calling it

Reported by: mymmaster Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Keywords: get_or_create aug22sprint
Cc: farhan@… Triage Stage: Design decision needed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Julian Bez)

get_or_create can be confusing to use because it doesn't pay attention to the object that is actually calling it. For example when calling
forumpost.participant_set.get_or_create(user=person)

it would make sense that get_or_create is referencing participant_set that is calling it and therefore would create a new entry to that result set if it doesn't exist. However, this is not the case. get_or_create merely uses participant_set to determine the type of object it is dealing with.

Change History (5)

comment:1 by Julian Bez, 16 years ago

Description: modified (diff)
Triage Stage: UnreviewedDesign decision needed

comment:2 by Farhan Ahmad, 16 years ago

Cc: farhan@… added

comment:3 by Charlie La Mothe, 16 years ago

Resolution: fixed
Status: newclosed

This was fixed in r8415.

comment:4 by Charlie La Mothe, 16 years ago

Keywords: aug22sprint added

comment:5 by Jacob, 13 years ago

milestone: 1.0

Milestone 1.0 deleted

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