diff options
author | 2008-03-25 03:47:21 +0000 | |
---|---|---|
committer | 2008-03-25 03:47:21 +0000 | |
commit | 2429c5daba37968dacb9b84e6eb671b057765fda (patch) | |
tree | 5218a8c3da1a02d241d02c5b33572551cd98ce5e /importxml.pl | |
parent | Bug 314120: [Oracle] DBI::st::rows is used in a way that breaks Oracle - Patc... (diff) | |
download | bugzilla-2429c5daba37968dacb9b84e6eb671b057765fda.tar.gz bugzilla-2429c5daba37968dacb9b84e6eb671b057765fda.tar.bz2 bugzilla-2429c5daba37968dacb9b84e6eb671b057765fda.zip |
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 <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'importxml.pl')
-rwxr-xr-x | importxml.pl | 1 |
1 files changed, 1 insertions, 0 deletions
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) |