From a512b3b55e3c6222bdd80b5b94302dd356247d2d Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Wed, 30 Jan 2013 13:45:35 -0500 Subject: Bug 102048: Display the "Blocks" and "Depends On" columns in buglists r/a=LpSolit --- Bugzilla/Search.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Bugzilla/Search.pm') diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 3c574274d..e89e86bc5 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -484,6 +484,14 @@ use constant COLUMN_JOINS => { to => 'id', }, }, + blocked => { + table => 'dependencies', + to => 'dependson', + }, + dependson => { + table => 'dependencies', + to => 'blocked', + }, 'longdescs.count' => { table => 'longdescs', join => 'INNER', @@ -551,6 +559,9 @@ sub COLUMNS { . $dbh->sql_string_concat('map_flagtypes.name', 'map_flags.status')), 'keywords' => $dbh->sql_group_concat('DISTINCT map_keyworddefs.name'), + + blocked => $dbh->sql_group_concat('DISTINCT map_blocked.blocked'), + dependson => $dbh->sql_group_concat('DISTINCT map_dependson.dependson'), 'longdescs.count' => 'COUNT(DISTINCT map_longdescs_count.comment_id)', ); @@ -646,7 +657,9 @@ 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( + blocked bug_id + dependson flagtypes.name keywords longdescs.count -- cgit v1.2.3-24-g4f1b