Is this the right list to report issues with the spellfix1 extension?

Here's a complete repro case:

[deepthought ~] ls -l newdb
ls: newdb: No such file or directory
[deepthought ~] sqlite3 newdb
SQLite version 3.14.2 2016-09-12 18:50:49
Enter ".help" for usage hints.
sqlite> SELECT LOAD_EXTENSION('spellfix1.dylib');
sqlite> CREATE VIRTUAL TABLE IF NOT EXISTS fuzzy USING spellfix1;
sqlite> INSERT INTO fuzzy (word) VALUES ('Knight');
sqlite> SELECT word, distance FROM fuzzy WHERE word = 'Knight';
Knight|
sqlite> SELECT word, distance FROM fuzzy WHERE word MATCH 'Knight';
sqlite> SELECT word, distance FROM fuzzy WHERE word MATCH 'Night';
Knight|100
sqlite>

Is this something configurable? Is it a bug?

Thanks!

Tom
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to