hi,

I have written an fts3 tokenizer which generates all prefixes of the input 
text. After inserting, "hallo" into an fts4 table, the fts4aux table has 
entries for "h", "ha", "hal", "hall", and "hallo".

If I try to do a "SELECT * FROM table WHERE string MATCH 'hal';", sqlite goes 
into an infinte loop with xOpen xNext and Xclose on my tokenizer. The argument 
for xOpen is always "hal", and xNext gets only called once in every loop. Why 
does the tokenizer gets called on a SELECT MATCH query? What would cause 
sqlite3 to go into such an infinite loop?

Greetings johannes
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to