summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-18 14:11:27 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-18 14:11:27 +0100
commitd0b17e984b42fea65eb4e8ecfd586e958507cb2c (patch)
treecfa63d20d3f951d0f9b92b956fdb5f410ada9627 /Bugzilla/Search.pm
parente03ba3a9693ea4704d46574d9f6ed5cdcf2504b8 (diff)
downloadbugzilla-d0b17e984b42fea65eb4e8ecfd586e958507cb2c.tar.gz
bugzilla-d0b17e984b42fea65eb4e8ecfd586e958507cb2c.tar.xz
Bug 395461: Allow multi-select fields to show up in buglist.cgi
r=dkl, a=mkanat
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm20
1 files changed, 18 insertions, 2 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 2c36fe233..76c4cd950 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -162,8 +162,18 @@ sub COLUMNS {
foreach my $field (Bugzilla->get_fields({ obsolete => 0, buglist => 1 })) {
my $id = $field->name;
$id = $old_names{$id} if exists $old_names{$id};
- my $sql = 'bugs.' . $field->name;
- $sql = $special_sql{$id} if exists $special_sql{$id};
+ my $sql;
+ if (exists $special_sql{$id}) {
+ $sql = $special_sql{$id};
+ }
+ elsif ($field->type == FIELD_TYPE_MULTI_SELECT) {
+ $sql = $dbh->sql_group_concat(
+ 'DISTINCT map_bug_' . $field->name . '.value',
+ $dbh->quote(', '));
+ }
+ else {
+ $sql = 'bugs.' . $field->name;
+ }
$columns{$id} = { name => $sql, title => $field->description };
}
@@ -273,6 +283,12 @@ sub init {
push(@supptables, "LEFT JOIN longdescs AS ldtime " .
"ON ldtime.bug_id = bugs.bug_id");
}
+ foreach my $field (@multi_select_fields) {
+ my $field_name = $field->name;
+ next if !grep($_ eq $field_name, @fields);
+ push(@supptables, "LEFT JOIN bug_$field_name AS map_bug_$field_name"
+ . " ON map_bug_$field_name.bug_id = bugs.bug_id");
+ }
if (grep($_ eq 'flagtypes.name', @fields)) {
push(@supptables, "LEFT JOIN flags ON flags.bug_id = bugs.bug_id AND attach_id IS NULL");