summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-09-05 01:17:04 +0200
committermkanat%bugzilla.org <>2006-09-05 01:17:04 +0200
commit0436b3d474c2562854e5ae727821dc77f63bd79a (patch)
treea6737088eab918aa0d9e8f57a1f05a956dc667ab /Bugzilla/DB
parentfbe550dd6a5783e8ebfaa0efb8e138ecc563a1cb (diff)
downloadbugzilla-0436b3d474c2562854e5ae727821dc77f63bd79a.tar.gz
bugzilla-0436b3d474c2562854e5ae727821dc77f63bd79a.tar.xz
Bug 57350: "added comments" search is slow or doesn't work at all
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=bkor, a=myk
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index fb5fb9ce8..b4a9005f7 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -269,7 +269,7 @@ use constant ABSTRACT_SCHEMA => {
],
INDEXES => [
longdescs_bug_id_idx => ['bug_id'],
- longdescs_who_idx => ['who'],
+ longdescs_who_idx => [qw(who bug_id)],
longdescs_bug_when_idx => ['bug_when'],
longdescs_thetext_idx => {FIELDS => ['thetext'],
TYPE => 'FULLTEXT'},