Commit 9426b8ea authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 824361: Add an index on (bug_id, work_time) in the longdescs table to improve performance

r=dkl a=LpSolit
parent 292ad609
......@@ -400,7 +400,7 @@ use constant ABSTRACT_SCHEMA => {
extra_data => {TYPE => 'varchar(255)'}
],
INDEXES => [
longdescs_bug_id_idx => ['bug_id'],
longdescs_bug_id_idx => [qw(bug_id work_time)],
longdescs_who_idx => [qw(who bug_id)],
longdescs_bug_when_idx => ['bug_when'],
],
......
......@@ -705,6 +705,9 @@ sub update_table_definitions {
# 2012-12-29 reed@reedloden.com - Bug 785283
_add_password_salt_separator();
# 2013-01-02 LpSolit@gmail.com - Bug 824361
_fix_longdescs_indexes();
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################
......@@ -3734,6 +3737,15 @@ sub _fix_longdescs_primary_key {
}
}
sub _fix_longdescs_indexes {
my $dbh = Bugzilla->dbh;
my $bug_id_idx = $dbh->bz_index_info('longdescs', 'longdescs_bug_id_idx');
if ($bug_id_idx && scalar @{$bug_id_idx->{'FIELDS'}} < 2) {
$dbh->bz_drop_index('longdescs', 'longdescs_bug_id_idx');
$dbh->bz_add_index('longdescs', 'longdescs_bug_id_idx', [qw(bug_id work_time)]);
}
}
sub _fix_dependencies_dupes {
my $dbh = Bugzilla->dbh;
my $blocked_idx = $dbh->bz_index_info('dependencies', 'dependencies_blocked_idx');
......
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