PostgreSQL: Fix Special:ActiveUsers GROUP BY query
authorJeff Janes <jeff.janes@gmail.com>
Fri, 18 Jul 2014 20:21:53 +0000 (13:21 -0700)
committerJeff Janes <jeff.janes@gmail.com>
Tue, 6 Jan 2015 21:40:06 +0000 (13:40 -0800)
commit52328f043c3f3e9a0ce76a8eadb7975bc957846e
treed6b54b38b7c97459ebe0b0f6f6b56bbc20f423d4
parent5669a0452933ca173be1b0b9a559564e15aa5b7a
PostgreSQL: Fix Special:ActiveUsers GROUP BY query

For GROUP BY queries, PostgreSQL require all columns in the
unaggregated part of the select list to also be in the
GROUP BY list.

To fix this, add user_name and user_id to the GROUP BY list along side
qcc_title.

This addition cannot change the query results, because user_name and
user_id are functionally dependent on qcc_title: user_name because
of the WHERE clause for this query, and user_id due to the 1 to 1
relationship between user_name and user_id enforced by their unique
and not null constraints on the underlying table.

This has been tested on PostgreSQL and MySQL.

Bug: 68087
Change-Id: I3aed715b40ff6e2290220122acbda0f0e74b5b36
includes/specials/SpecialActiveusers.php