summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2005-07-12 02:34:46 +0200
committerbugreport%peshkin.net <>2005-07-12 02:34:46 +0200
commit7e546edc8f6666bb4b7dc8bd502251b666bd60c0 (patch)
tree76428ddd0ccb0d5db304134ab7ac1508866067c6 /Bugzilla/DB
parent07578c0a572fe5e5966a0ec3e1bc38a7f0ead834 (diff)
downloadbugzilla-7e546edc8f6666bb4b7dc8bd502251b666bd60c0.tar.gz
bugzilla-7e546edc8f6666bb4b7dc8bd502251b666bd60c0.tar.xz
Bug 299156: Reduce saniitycheck submitter_id time for large sites
Patch by Joel Peshkin <bugreport@peshkin.net> r=mkanat, a=justdave
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 52d1b3212..300a97b98 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -310,7 +310,7 @@ use constant ABSTRACT_SCHEMA => {
INDEXES => [
attachments_bug_id_idx => ['bug_id'],
attachments_creation_ts_idx => ['creation_ts'],
- attachments_submitter_id_idx => ['submitter_id'],
+ attachments_submitter_id_idx => ['submitter_id', 'bug_id'],
],
},