1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Remove a redundant line from fts3.

FossilOrigin-Name: cd50acf37fd1e3b388f98fb2df7ed03cff454b24
This commit is contained in:
dan
2009-12-07 16:26:52 +00:00
parent 1a0edc1559
commit 7bf44fc018
3 changed files with 7 additions and 8 deletions

View File

@ -166,7 +166,6 @@ int sqlite3Fts3InitTokenizer(
if( !z ){
zCopy = sqlite3_mprintf("simple");
}else{
while( !(*z&0x80) && isspace(*z) ) z++;
if( sqlite3_strnicmp(z, "tokenize", 8) || fts3IsIdChar(z[8])){
return SQLITE_OK;
}