]> source.dussan.org Git - gitea.git/commit
Fixes 500 error on dashboard when using MSSQL (#2504)
authorbradder555 <bradder555@users.noreply.github.com>
Fri, 15 Sep 2017 06:14:06 +0000 (14:14 +0800)
committerLauris BH <lauris@nix.lv>
Fri, 15 Sep 2017 06:14:06 +0000 (09:14 +0300)
commitad24a3134d4851aa80e9a385fe97882f6d034020
tree994e9ab889bfb1d32d2207b6dcf90a221f92aa23
parent0f9e20b3d7a2c5f53cbf8d66e573b983288d06e0
Fixes 500 error on dashboard when using MSSQL (#2504)

MSSQL rejects the query:
  SELECT "repository"."id" FROM "repository"
  INNER JOIN "team_repo" ON "team_repo".repo_id="repository".id AND
  "repository".is_mirror=1
  WHERE (
    ("repository".owner_id=2 AND "repository".is_private=0)
        OR team_repo.team_id IN (1)
        )
        GROUP BY "repository".id ORDER BY updated_unix DESC

when the order by term (updated_unix) is not included in the group by
term.
models/org.go