Changes between Initial Version and Version 1 of Ticket #36299


Ignore:
Timestamp:
Apr 4, 2025, 8:26:24 AM (7 months ago)
Author:
OutOfFocus4
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36299 – Description

    initial v1  
    1010This code adds the alias to `selected` regardless of the value of the `select` parameter.
    1111
    12 Another issue I found causes queryset evaluation to raise an `AttributeError`. The following code:
     12Another issue I found causes queryset evaluation to raise an `AttributeError` if the database backend supports `SELECT ... FOR UPDATE`. The following code:
    1313
    1414{{{#!python
     
    2323}}}
    2424
    25 will fail with a stacktrace ending in `AttributeError: 'Concat' object has no attribute 'target'`
     25will fail with a stacktrace ending in `AttributeError: 'Concat' object has no attribute 'target'` using the `postgresql` DB backend.
Back to Top