sqlite/ext/fts3
dan 71138b0f0f Merge trunk changes with this branch.
FossilOrigin-Name: 142743918fd5a6d79fa10c44398360c3684a255a
2015-03-21 15:45:24 +00:00
..
tool Improvements to the MSVC build. Fix harmless compiler warnings. Enable use of 'stdcall'. 2015-03-21 02:22:37 +00:00
unicode Fix some problems with building fts5 and fts3 together using the amalgamation. 2015-02-02 11:32:20 +00:00
README.content Add new file ext/fts3/README.content, describing the experimental FTS4 content option. 2011-10-31 11:36:29 +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 Change the name of the "unicode" tokenizer to "unicode61" to emphasize that the case folding and separator-character identification routines are based on unicode version 6.1. 2012-05-26 14:54:50 +00:00
README.txt Copy fts2 to fts3, renaming, and replacing references to fts2 with 2007-08-20 17:37:02 +00:00
fts3.c Avoid an integer overflow in fts3 causing gcc 4.7.1 with -O2 to behave counter-intuitively (perhaps because the behaviour is undefined). Add an "ifcapable trace" to a test in shell4.test. 2015-03-21 12:22:51 +00:00
fts3.h Add some code for an experimental fts5 module. Does not work yet. 2014-06-23 11:33:22 +00:00
fts3Int.h Improve the performance of fts3/4 queries that use the OR operator and at least one auxiliary fts function. 2015-01-27 18:43:02 +00:00
fts3_aux.c Add the "languageid" hidden column to fts4aux. 2013-10-15 19:06:17 +00:00
fts3_expr.c Allow FTS tokenizers to choose whether or not to consider the "*" character part of tokens or not. This restores the pre-[e21bf7a2ad] behaviour. Also fix a problem causing FTS to interpret tokens beginning with "*" characters as EOF. 2014-10-09 15:08:17 +00:00
fts3_hash.c Fixes for various clang warnings. 2014-01-24 22:58:00 +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 Make sure substructure elements have proper alignment in the ICU tokenizers 2012-10-19 02:10:53 +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 harmless compiler warning. 2015-03-04 20:18:55 +00:00
fts3_term.c Fix harmless compiler warnings on x64 MSVC, mostly in test code, but also in 2012-04-19 18:04:28 +00:00
fts3_test.c When possible, have FTS use 32-bit operations to read varints from the database. 2013-11-12 17:46:44 +00:00
fts3_tokenize_vtab.c Fix some harmless compiler warnings. 2015-01-12 18:38:02 +00:00
fts3_tokenizer.c Fix an FTS3/4 problem with handling empty tokenizer declarations (e.g. "CREATE VIRTUAL TABLE t(tokenize=);"). 2015-03-19 16:25:42 +00:00
fts3_tokenizer.h Many spelling fixes in comments. No changes to code. 2013-03-21 21:20:32 +00:00
fts3_tokenizer1.c Fix harmless compiler warnings. 2012-03-16 00:28:11 +00:00
fts3_unicode.c Fix harmless compiler warnings. 2014-08-11 14:21:32 +00:00
fts3_unicode2.c A couple more harmless compiler warnings eliminated. 2014-08-06 18:50:51 +00:00
fts3_write.c Improvements to the MSVC build. Fix harmless compiler warnings. Enable use of 'stdcall'. 2015-03-21 02:22:37 +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
mkfts3amal.tcl Version number to 3.5.5. Include FTS3 in the amalgamation by default 2008-01-31 13:35:48 +00:00

README.txt

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.