From 011c5c09ce2cc7d09f5af75f86339f0d8889c5ba Mon Sep 17 00:00:00 2001
From: "mkanat%bugzilla.org" <>
Date: Sat, 26 Aug 2006 06:20:34 +0000
Subject: Bug 350237: checksetup does not properly add a short_desc index to
 old installations Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module
 owner) a=myk

---
 Bugzilla/Install/DB.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'Bugzilla/Install')

diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 06c46e1ec..adf5b7c30 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -480,7 +480,7 @@ sub update_table_definitions {
     $dbh->bz_alter_column('tokens', 'userid', {TYPE => 'INT3'});
 
     my $sd_index = $dbh->bz_index_info('bugs', 'bugs_short_desc_idx');
-    if ($sd_index && $sd_index->{TYPE} eq 'FULLTEXT') {
+    if (!$sd_index || ($sd_index->{TYPE}  && $sd_index->{TYPE} eq 'FULLTEXT')) {
         $dbh->bz_drop_index('bugs', 'bugs_short_desc_idx');
         $dbh->bz_add_index('bugs', 'bugs_short_desc_idx', [qw(short_desc)]);
     }
-- 
cgit v1.2.1