Changes between Initial Version and Version 1 of Ticket #36299
- Timestamp:
- Apr 4, 2025, 8:26:24 AM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36299 – Description
initial v1 10 10 This code adds the alias to `selected` regardless of the value of the `select` parameter. 11 11 12 Another issue I found causes queryset evaluation to raise an `AttributeError` . The following code:12 Another issue I found causes queryset evaluation to raise an `AttributeError` if the database backend supports `SELECT ... FOR UPDATE`. The following code: 13 13 14 14 {{{#!python … … 23 23 }}} 24 24 25 will fail with a stacktrace ending in `AttributeError: 'Concat' object has no attribute 'target'` 25 will fail with a stacktrace ending in `AttributeError: 'Concat' object has no attribute 'target'` using the `postgresql` DB backend.