#30375: Use "NO KEY" when doing select_for_update for PostgreSQL
-------------------------------------+-------------------------------------
     Reporter:  Manuel Weitzman      |                    Owner:  nobody
         Type:                       |                   Status:  new
  Cleanup/optimization               |
    Component:  Database layer       |                  Version:  master
  (models, ORM)                      |
     Severity:  Normal               |               Resolution:
     Keywords:  postgres, lock,      |             Triage Stage:
  database, operation                |  Unreviewed
    Has patch:  1                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------
Changes (by Simon Charette):

 * version:  2.2 => master


Comment:

 > ... in Django, primary key fields are read-only, so locking them makes
 no sense

 That's not true AFAIK. Even if `AutoField` are backed by sequences and
 generated on the database side they can still be overridden by developers.
 Same thing with non-`AutoField` primary keys (e.g.
 `UUIDField(default=uuid.uuid4)`).

 On the other hand updating a primary key while holding a lock is really
 uncommon so I wouldn't be against adding a `select_for_udate(primary_key)`
 parameter that defaults to `False`. We just have to make sure that we
 still allow these operations to be performed somehow.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/30375#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/064.aa40d31cd5ce15a0ccd12dfe0a87d7b7%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to