From 2429c5daba37968dacb9b84e6eb671b057765fda Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Tue, 25 Mar 2008 03:47:21 +0000 Subject: Bug 399370: Fulltext search with a LIKE on bugs.short_desc is too slow (make Bugzilla use a separate fulltext table) Patch By Max Kanat-Alexander (module owner) a=mkanat --- importxml.pl | 1 + 1 file changed, 1 insertion(+) (limited to 'importxml.pl') diff --git a/importxml.pl b/importxml.pl index b7203a6e6..2644d3380 100755 --- a/importxml.pl +++ b/importxml.pl @@ -1253,6 +1253,7 @@ sub process_bug { VALUES (?,?,?,?,?,?)", undef, $id, $exporterid, $timestamp, $worktime, $private, $long_description ); + Bugzilla::Bug->new($id)->_sync_fulltext(); # Add this bug to each group of which its product is a member. my $sth_group = $dbh->prepare("INSERT INTO bug_group_map (bug_id, group_id) -- cgit v1.2.3-24-g4f1b