sqlite/ext/fts3
dan 40e3fa3035 Fix a memory leak in fts3 that could occur when processing a corrupt database.
FossilOrigin-Name: d74f6f6d5136995b8bf900eb671e4b15ca81e03cc1ab5b7a1aa43dc4f3617760
2022-07-15 15:08:48 +00:00
..
tool Extend the refactoring into extensions. Clean up stray newlines. 2020-06-19 15:24:12 +00:00
unicode Update mkunicode.tcl to match the change erroneously made to machine generated file fts5_unicode2.c in [b7b7bde9]. 2020-11-26 20:13:54 +00:00
fts3_aux.c In the previous check-in, do not overwrite the SQLITE_CORRUPT signal with 2021-11-22 12:59:44 +00:00
fts3_expr.c Fix a case in the fts3 offsets() function where a corrupt database record could lead to dereferencing an uninitialized pointer. 2021-10-20 11:40:34 +00:00
fts3_hash.c Use 64-bit math to compute the sizes of memory allocations in extensions. 2019-01-08 20:02:48 +00:00
fts3_hash.h Many spelling fixes in comments. No changes to code. 2013-03-21 21:20:32 +00:00
fts3_icu.c Use 64-bit math to compute the sizes of memory allocations in extensions. 2019-01-08 20:02:48 +00:00
fts3_porter.c Fix comment typos reported on the mailing list. No changes to code. 2014-12-04 14:01:39 +00:00
fts3_snippet.c Fix a crash that could occur in fts3 when processing a corrupt database. 2021-11-04 18:04:55 +00:00
fts3_term.c Fix various harmless compiler warnings seen with MSVC. 2019-03-20 05:45:03 +00:00
fts3_test.c Add "#ifdef SQLITE_DEBUG" blocks around test variables sqlite3_fts5_may_be_corrupt and sqlite3_fts3_may_be_corrupt. 2021-03-29 20:04:31 +00:00
fts3_tokenize_vtab.c Fix fts3 and fts4 so that they can still be used even if the other is dropped by a call to sqlite3_drop_modules(). 2021-12-16 15:29:49 +00:00
fts3_tokenizer1.c Fix harmless compiler warnings. 2012-03-16 00:28:11 +00:00
fts3_tokenizer.c Only register the fts3_tokenizer() function using a single text encoding. 2020-01-09 20:33:36 +00:00
fts3_tokenizer.h Many spelling fixes in comments. No changes to code. 2013-03-21 21:20:32 +00:00
fts3_unicode2.c Fix harmless compiler warnings in the unicode2 logic of FTS3 and FTS5. 2019-01-02 23:49:47 +00:00
fts3_unicode.c Fix sanitizer complaint in fts3 code. 2021-03-10 20:04:21 +00:00
fts3_write.c Fix a 1-byte overread in fts3 that could occur when processing corrupt records. 2022-06-03 13:52:53 +00:00
fts3.c Fix a memory leak in fts3 that could occur when processing a corrupt database. 2022-07-15 15:08:48 +00:00
fts3.h Remove unnecessary lines from fts3.h and main.mk. 2015-06-26 20:13:56 +00:00
fts3Int.h Fix fts3 and fts4 so that they can still be used even if the other is dropped by a call to sqlite3_drop_modules(). 2021-12-16 15:29:49 +00:00
fts3speed.tcl Updates to FTS4 to improve performance and make more accurate cost estimates for prefix terms. 2010-10-20 18:56:04 +00:00
README.content Extend the refactoring into extensions. Clean up stray newlines. 2020-06-19 15:24:12 +00:00
README.syntax Fix the name in the documentation of the compile-time macro for 2008-12-31 19:27:53 +00:00
README.tokenizers The fts3_tokenizer() function returns NULL if the 2019-03-01 21:33:29 +00:00
README.txt Copy fts2 to fts3, renaming, and replacing references to fts2 with 2007-08-20 17:37:02 +00:00

This folder contains source code to the second full-text search
extension for SQLite.  While the API is the same, this version uses a
substantially different storage schema from fts1, so tables will need
to be rebuilt.