diff options
author | Matt Tyson <mtyson@redhat.com> | 2015-03-23 14:38:37 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-23 14:38:37 +0100 |
commit | 7559020b6e10103849bd7eb2302d7a60b5b0b0b8 (patch) | |
tree | cc3a4e76e1957253c39827a5ed2fa2f1535b2de7 /Bugzilla | |
parent | 4aa14852570cd060eb0f71760d7f9d82f8bbabc0 (diff) | |
download | bugzilla-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.pm | 2 |
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 ); ############### |