Commit 516f99e6 authored by Matt Tyson's avatar Matt Tyson Committed by Byron Jones

Bug 1145438: DB Crash under postgres when using alias column in buglist.cgi

(fix ordering)
parent 485ad42e
...@@ -705,6 +705,7 @@ sub REPORT_COLUMNS { ...@@ -705,6 +705,7 @@ sub REPORT_COLUMNS {
# is here because it *always* goes into the GROUP BY as the first item, # 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. # so it should be skipped when determining extra GROUP BY columns.
use constant GROUP_BY_SKIP => qw( use constant GROUP_BY_SKIP => qw(
alias
blocked blocked
bug_id bug_id
dependson dependson
...@@ -713,7 +714,6 @@ use constant GROUP_BY_SKIP => qw( ...@@ -713,7 +714,6 @@ use constant GROUP_BY_SKIP => qw(
longdescs.count longdescs.count
percentage_complete percentage_complete
tag tag
alias
); );
############### ###############
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment