0

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
This commit is contained in:
dumi@chromium.org
2010-06-15 00:11:38 +00:00
parent 416868c318
commit b4228fbd5f

@ -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,"