index
:
sqlite
master
sqlite mirror
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ext
/
misc
/
spellfix.c
Commit message (
Expand
)
Author
Age
*
Fix the series.c and spellfix.c extensions to use SQLITE_VTAB_INNOCUOUS
drh
2020-01-21
*
Create the "trusted_schema" pragma. Add sqlite3_vtab_config() calls to set
drh
2020-01-07
*
Tweak spellfix.c so that if SQLITE_SPELLFIX_5BYTE_MAPPINGS is defined at
dan
2018-09-26
*
Fix a bug in the spellfix extension causing it to compute suboptimal answers.
drh
2018-03-30
*
Fix an off-by-one error in the dist3 algorithm of the spellfix extension.
drh
2018-03-30
*
Improve performance of editdist3() by keeping the costs in sorted order.
drh
2018-02-15
*
Reduce the number of calls to strncmp() required to run editDist3Core().
drh
2018-02-15
*
Performance optimizations to the editdist3() function in the spellfix
drh
2018-02-14
*
Disable assert() in the spellfix extension if not compiled with SQLITE_DEBUG.
drh
2018-02-14
*
Try to optimize spellfix1 by storing a NULL in the k1 column of %_vocab
drh
2018-02-14
*
Reorganize spellfix.c to make it easier to edit automatically (e.g. using a
dan
2018-01-24
*
The extensions functions in spellfix are all deterministic.
drh
2017-11-03
*
Work in progress on setting a calling convention for all callback functions.
mistachkin
2016-07-28
*
More harmless compiler warning fixes.
mistachkin
2016-04-12
*
Update spellfix1_scriptcode() to output 215 (latin) for pure numeric text.
drh
2016-03-11
*
Increase the default upper bound on scope to 30.
drh
2016-03-03
*
Use sqlite3_malloc64() instead of sqlite3_malloc() in the spellfix extension.
drh
2016-02-04
*
Add the SQLITE_SPELLFIX_STACKALLOC_SZ compile-time option to control how much
drh
2016-01-23
*
Changes to spellfix to try to get it to use stack space instead of heap space
drh
2016-01-23
*
Fix the spellfix1_scriptcode() function to ignore whitespace and punctuation,
drh
2015-12-17
*
Fix uses of ctype functions (ex: isspace()) on signed characters in test
drh
2015-10-29
*
Update the spellfix virtual table extension so that an explicit "top = ?" con...
dan
2015-08-05
*
Add "ON CONFLICT" handling to the spellfix module.
dan
2015-06-24
*
Silence some harmless uninitialized local variable warnings.
mistachkin
2015-01-12
*
Enhance the spellfix extension with the ability to specify a rowid when
drh
2014-08-22
*
Fix the index name for the shadow tables in the spellfix1 extension so that
drh
2014-07-22
*
Always include the ctype.h header in the spellfix.c extension.
drh
2014-03-05
*
Change the spellfix1 virtual table to deterministically names its shadow
drh
2014-02-06
*
Update the spellfix virtual table to optimize queries of the form "SELECT ......
dan
2014-01-22
*
Fix an error message in the spellfix extension so that it conforms to the
drh
2013-11-12
*
Adjust the costs in the xBestIndex function of the spellfix1 virtual table
drh
2013-07-09
*
Fixes to allow testfixture to be compiled with SQLITE_OMIT_VIRTUAL_TABLE defi...
dan
2013-05-15
*
Remove spellfix virtual table documentation from the source tree.
drh
2013-04-27
*
Added the nextchar.c extension. Minor changes to the spellfix.c extension
drh
2013-04-25
*
Move the test_spellfix.c module to ext/misc/spellfix.c.
drh
2013-04-25