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:
@ -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,"
|
||||
|
Reference in New Issue
Block a user