Changes between Version 2 and Version 3 of Ticket #31217
- Timestamp:
- Jan 30, 2020, 12:51:00 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31217 – Description
v2 v3 20 20 Regression in 59b4e99dd00b9c36d56055b889f96885995e4240. 21 21 22 The query before: 23 {{{ 24 .... 25 GROUP BY "aggregation_book"."id", T4."age" ORDER BY COALESCE(MIN("aggregation_author"."age"), T4."age") ASC 26 }}} 27 and after 59b4e99dd00b9c36d56055b889f96885995e4240 28 {{{ 29 ... 30 GROUP BY "aggregation_book"."id" ORDER BY COALESCE(MIN("aggregation_author"."age"), T4."age") ASC 31 }}} 32 22 33 Thanks Jon Dufresne for the report.