Changes between Initial Version and Version 1 of Ticket #34827
- Timestamp:
- Sep 10, 2023, 10:02:55 PM (15 months ago)
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.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. 2 2 3 3 {{{ … … 18 18 }}} 19 19 20 I think the sample should be:20 I think the example should be: 21 21 22 22 {{{