From a95e4cef08d53d349c57bd5cfed7aac117a24145 Mon Sep 17 00:00:00 2001 From: "bzrmirror%bugzilla.org" Date: Mon, 23 Mar 2015 13:45:50 +0000 Subject: [PATCH] Bug 1145438: DB Crash under postgres when using alias column in buglist.cgi (fix ordering) git-svn-id: svn://10.0.0.236/trunk@265892 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/.bzrrev | 2 +- mozilla/webtools/bugzilla/.gitrev | 2 +- mozilla/webtools/bugzilla/Bugzilla/Search.pm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/webtools/bugzilla/.bzrrev b/mozilla/webtools/bugzilla/.bzrrev index fa6eea2a471..6d106e6c9c0 100644 --- a/mozilla/webtools/bugzilla/.bzrrev +++ b/mozilla/webtools/bugzilla/.bzrrev @@ -1 +1 @@ -9346 \ No newline at end of file +9347 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/.gitrev b/mozilla/webtools/bugzilla/.gitrev index 59ff4064079..72039240488 100644 --- a/mozilla/webtools/bugzilla/.gitrev +++ b/mozilla/webtools/bugzilla/.gitrev @@ -1 +1 @@ -4aa14852570cd060eb0f71760d7f9d82f8bbabc0 \ No newline at end of file +7559020b6e10103849bd7eb2302d7a60b5b0b0b8 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/Bugzilla/Search.pm b/mozilla/webtools/bugzilla/Bugzilla/Search.pm index c95651a159a..e06e706a722 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Search.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Search.pm @@ -706,6 +706,7 @@ sub REPORT_COLUMNS { # is here because it *always* goes into the GROUP BY as the first item, # so it should be skipped when determining extra GROUP BY columns. use constant GROUP_BY_SKIP => qw( + alias blocked bug_id dependson @@ -714,7 +715,6 @@ use constant GROUP_BY_SKIP => qw( longdescs.count percentage_complete tag - alias ); ###############