summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorMatt Tyson <mtyson@redhat.com>2015-03-23 14:38:37 +0100
committerByron Jones <glob@mozilla.com>2015-03-23 14:38:37 +0100
commit7559020b6e10103849bd7eb2302d7a60b5b0b0b8 (patch)
treecc3a4e76e1957253c39827a5ed2fa2f1535b2de7 /Bugzilla
parent4aa14852570cd060eb0f71760d7f9d82f8bbabc0 (diff)
downloadbugzilla-7559020b6e10103849bd7eb2302d7a60b5b0b0b8.tar.gz
bugzilla-7559020b6e10103849bd7eb2302d7a60b5b0b0b8.tar.xz
Bug 1145438: DB Crash under postgres when using alias column in buglist.cgi
(fix ordering)
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index c95651a15..e06e706a7 100644
--- a/Bugzilla/Search.pm
+++ b/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
);
###############