Commit 9ff7db77 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

am f764dbb5: disable fts3_tokenizer

* commit 'f764dbb5':
  disable fts3_tokenizer
parents ed4638e2 f764dbb5
......@@ -120222,7 +120222,9 @@ SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db, const char* registerAs){ // Andr
** module with sqlite.
*/
if( SQLITE_OK==rc
#ifndef ANDROID /* fts3_tokenizer disabled for security reasons */
&& SQLITE_OK==(rc = sqlite3Fts3InitHashTable(db, pHash, "fts3_tokenizer"))
#endif
&& SQLITE_OK==(rc = sqlite3_overload_function(db, "snippet", -1))
&& SQLITE_OK==(rc = sqlite3_overload_function(db, "offsets", 1))
&& SQLITE_OK==(rc = sqlite3_overload_function(db, "matchinfo", 1))
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment