Changes between Version 2 and Version 3 of Ticket #25517


Ignore:
Timestamp:
Oct 6, 2015, 2:06:03 PM (9 years ago)
Author:
Warren Smith
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25517

    • Property Owner changed from nobody to Warren Smith
    • Property Status newassigned
  • Ticket #25517 – Description

    v2 v3  
    66
    77However, in a long-running process (where this bug was found), it can be easily triggered. For example, say I have a "base" queryset with a `Concat()` within an `.annotate()`. I never actually evaluate this queryset, but I use it to construct other querysets which I do evaluate. Because all of these querysets share the same instance of `Query._annotations`, evaluating ANY of these querysets will add an additional level of `COALESCE()` to the SQL generated by the others.
    8 
    9 I have a fix coded. I will submit a PR shortly.
Back to Top