Fatal termination of the program after the sql-script:
CREATE VIRTUAL TABLE ind_test USING fts5(message);
create table test_table(message text);
insert into ind_test(message)
values ('not_bla_bla');
insert into test_table
values ('bla_bla');
select *
from test_table as t1
left outer join ind_test as i on t1.message = i.message
where i.rowid is null;
in function sqlite3VdbeMemSetStr line for(nByte=0; nByte<=iLimit &&
(z[nByte] | z[nByte+1]); nByte+=2){}
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users