You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of only eliding select lists longer than 12 characters, now only
elide select lists that contain a dot (from a column expression like
`table_name`.`column_name`). The motivation for this is that as of
Django 1.10, using .count() on a queryset generates
SELECT COUNT(*) AS `__count` FROM ...
instead of
SELECT COUNT(*) FROM ...
queries. This change prevents the new form from being elided.
0 commit comments