diff options
author | Matt Tyson <mtyson@redhat.com> | 2015-03-23 21:39:44 +0800 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-23 21:39:44 +0800 |
commit | 516f99e6940e6c5566229045cbbfa5f1ea5e0c5c (patch) | |
tree | 0e2584b548404201b3446452eab35b02e867293e /Bugzilla | |
parent | 485ad42eb9f1ca77e1ea53b8c4dadd2375dd4522 (diff) | |
download | bugs-516f99e6940e6c5566229045cbbfa5f1ea5e0c5c.tar bugs-516f99e6940e6c5566229045cbbfa5f1ea5e0c5c.tar.gz bugs-516f99e6940e6c5566229045cbbfa5f1ea5e0c5c.tar.bz2 bugs-516f99e6940e6c5566229045cbbfa5f1ea5e0c5c.tar.xz bugs-516f99e6940e6c5566229045cbbfa5f1ea5e0c5c.zip |
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 0c59959dd..9dea07b5d 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -705,6 +705,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 @@ -713,7 +714,6 @@ use constant GROUP_BY_SKIP => qw( longdescs.count percentage_complete tag - alias ); ############### |