Changes between Initial Version and Version 1 of Ticket #34827


Ignore:
Timestamp:
Sep 10, 2023, 10:02:55 PM (12 months ago)
Author:
Jim Nicholls
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34827 – Description

    initial v1  
    1 The example for `select_for_update` at https://docs.djangoproject.com/en/4.2/ref/models/querysets/#select-for-update shows `select-for-update` being used before starting the transaction. With Django 4.2.5, this raises a TransactionManagementError.
     1The example for `select_for_update` at https://docs.djangoproject.com/en/4.2/ref/models/querysets/#select-for-update shows `select_for_update` being used before starting the transaction. With Django 4.2.5, this raises a TransactionManagementError.
    22
    33{{{
     
    1818}}}
    1919
    20 I think the sample should be:
     20I think the example should be:
    2121
    2222{{{
Back to Top