aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/spellfix.c
Commit message (Expand)AuthorAge
* Fix the series.c and spellfix.c extensions to use SQLITE_VTAB_INNOCUOUSdrh2020-01-21
* Create the "trusted_schema" pragma. Add sqlite3_vtab_config() calls to setdrh2020-01-07
* Tweak spellfix.c so that if SQLITE_SPELLFIX_5BYTE_MAPPINGS is defined atdan2018-09-26
* Fix a bug in the spellfix extension causing it to compute suboptimal answers.drh2018-03-30
* Fix an off-by-one error in the dist3 algorithm of the spellfix extension.drh2018-03-30
* Improve performance of editdist3() by keeping the costs in sorted order.drh2018-02-15
* Reduce the number of calls to strncmp() required to run editDist3Core().drh2018-02-15
* Performance optimizations to the editdist3() function in the spellfixdrh2018-02-14
* Disable assert() in the spellfix extension if not compiled with SQLITE_DEBUG.drh2018-02-14
* Try to optimize spellfix1 by storing a NULL in the k1 column of %_vocabdrh2018-02-14
* Reorganize spellfix.c to make it easier to edit automatically (e.g. using a dan2018-01-24
* The extensions functions in spellfix are all deterministic.drh2017-11-03
* Work in progress on setting a calling convention for all callback functions.mistachkin2016-07-28
* More harmless compiler warning fixes.mistachkin2016-04-12
* Update spellfix1_scriptcode() to output 215 (latin) for pure numeric text.drh2016-03-11
* Increase the default upper bound on scope to 30.drh2016-03-03
* Use sqlite3_malloc64() instead of sqlite3_malloc() in the spellfix extension.drh2016-02-04
* Add the SQLITE_SPELLFIX_STACKALLOC_SZ compile-time option to control how muchdrh2016-01-23
* Changes to spellfix to try to get it to use stack space instead of heap spacedrh2016-01-23
* Fix the spellfix1_scriptcode() function to ignore whitespace and punctuation,drh2015-12-17
* Fix uses of ctype functions (ex: isspace()) on signed characters in testdrh2015-10-29
* Update the spellfix virtual table extension so that an explicit "top = ?" con...dan2015-08-05
* Add "ON CONFLICT" handling to the spellfix module.dan2015-06-24
* Silence some harmless uninitialized local variable warnings.mistachkin2015-01-12
* Enhance the spellfix extension with the ability to specify a rowid whendrh2014-08-22
* Fix the index name for the shadow tables in the spellfix1 extension so thatdrh2014-07-22
* Always include the ctype.h header in the spellfix.c extension.drh2014-03-05
* Change the spellfix1 virtual table to deterministically names its shadowdrh2014-02-06
* Update the spellfix virtual table to optimize queries of the form "SELECT ......dan2014-01-22
* Fix an error message in the spellfix extension so that it conforms to the drh2013-11-12
* Adjust the costs in the xBestIndex function of the spellfix1 virtual tabledrh2013-07-09
* Fixes to allow testfixture to be compiled with SQLITE_OMIT_VIRTUAL_TABLE defi...dan2013-05-15
* Remove spellfix virtual table documentation from the source tree.drh2013-04-27
* Added the nextchar.c extension. Minor changes to the spellfix.c extensiondrh2013-04-25
* Move the test_spellfix.c module to ext/misc/spellfix.c.drh2013-04-25