]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
PostgreSQL - a couple more GROUP BY queries that needed to be explicit
authorCiaranG <ciaran@ciarang.com>
Mon, 9 Mar 2009 20:24:56 +0000 (20:24 +0000)
committerCiaranG <ciaran@ciarang.com>
Mon, 9 Mar 2009 20:24:56 +0000 (20:24 +0000)
actions/favorited.php
lib/topposterssection.php

index 5082f4a4eb3e5ae258c67804516924c73907c686..231b97897377b9026b6104fb904bd5f211830d08 100644 (file)
@@ -178,7 +178,7 @@ class FavoritedAction extends Action
         $qry = 'SELECT notice.*, '.
           $weightexpr . ' as weight ' .
           'FROM notice JOIN fave ON notice.id = fave.notice_id ' .
-          'GROUP BY fave.notice_id ' .
+          'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source ' .
           'ORDER BY weight DESC';
 
         $offset = ($this->page - 1) * NOTICES_PER_PAGE;
index 4bd59ac7971cfba0384a70c3e00f5c61c6166143..1a2ce00140f6c0e092f1173779dc009d74651ec8 100644 (file)
@@ -51,7 +51,7 @@ class TopPostersSection extends ProfileSection
         $qry = 'SELECT profile.*, count(*) as value ' .
           'FROM profile JOIN notice ON profile.id = notice.profile_id ' .
           (common_config('public', 'localonly') ? 'WHERE is_local = 1 ' : '') .
-          'GROUP BY profile.id ' .
+          'GROUP BY profile.id,nickname,fullname,profileurl,homepage,bio,location,profile.created,profile.modified,textsearch ' .
           'ORDER BY value DESC ';
 
         $limit = PROFILES_PER_SECTION;