summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history/text_database.cc
diff options
context:
space:
mode:
authordumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-15 00:11:38 +0000
committerdumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-15 00:11:38 +0000
commitb4228fbd5ffe9150ac1d2936819c84c090238aac (patch)
treec7498659e01166531d8d758d75fb7846287866af /chrome/browser/history/text_database.cc
parent416868c318169408219bfd6f56cfb915f61637ea (diff)
downloadchromium_src-b4228fbd5ffe9150ac1d2936819c84c090238aac.zip
chromium_src-b4228fbd5ffe9150ac1d2936819c84c090238aac.tar.gz
chromium_src-b4228fbd5ffe9150ac1d2936819c84c090238aac.tar.bz2
Make all new history index files use FTS3 instead of FTS2.
BUG=none TEST=none Review URL: http://codereview.chromium.org/2818004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49746 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history/text_database.cc')
-rw-r--r--chrome/browser/history/text_database.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/history/text_database.cc b/chrome/browser/history/text_database.cc
index 3ee835a..dc8ff8b 100644
--- a/chrome/browser/history/text_database.cc
+++ b/chrome/browser/history/text_database.cc
@@ -169,7 +169,7 @@ void TextDatabase::CommitTransaction() {
bool TextDatabase::CreateTables() {
// FTS table of page contents.
if (!db_.DoesTableExist("pages")) {
- if (!db_.Execute("CREATE VIRTUAL TABLE pages USING fts2("
+ if (!db_.Execute("CREATE VIRTUAL TABLE pages USING fts3("
"TOKENIZE icu,"
"url LONGVARCHAR,"
"title LONGVARCHAR,"