Changes between Version 2 and Version 3 of Ticket #25517
- Timestamp:
- Oct 6, 2015, 2:06:03 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25517
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #25517 – Description
v2 v3 6 6 7 7 However, 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.