[sqlite] Libstringmetrics

2015-03-12 Thread Milan Roubal
st_dist, stringmetrics("qgrams_distance","similarity",a.lastname, b.lastname,"") last_dist from (select "Milan" as firstname, "Roubal" as lastname ) a, (select "Milan" as firstname, "RoubalRoubalRoubalRo" as lastname ) b ; sqlite>

[sqlite] Libstringmetrics

2015-03-12 Thread Milan Roubal
On 2015-03-12 00:33, Simon Slavin wrote: >> On 11 Mar 2015, at 10:54pm, Milan Roubal wrote: >> >> .load ./libstringmetrics.so >> select a.firstname, b.firstname, a.lastname, b.lastname, >> stringmetrics("qgrams_distance","similarity",a.firstname

[sqlite] Libstringmetrics

2015-03-12 Thread Milan Roubal
0000 00:00 0 7fff40c81000-7fff40ca2000 rw-p 00:00 0 [stack] 7fff40d02000-7fff40d04000 r-xp 00:00 0 [vdso] ff60-ff601000 r-xp 00:00 0 [vsyscall] Aborted Milan On 2015-03

[sqlite] Libstringmetrics

2015-03-12 Thread Milan Roubal
ow to fast find which record is doing that crash or even fix for such crash is welcome :) Milan On 2015-03-11 19:30, Simon Slavin wrote: >> On 11 Mar 2015, at 4:56pm, Milan Roubal wrote: >> >> I am also facing problem with sqlite closed by windows because of >> crash. On

[sqlite] Libstringmetrics

2015-03-11 Thread Milan Roubal
on all my data. I am trying to find what concrete string comparison is crashing it, but it is slow with crashes. Is there any way how to start logging the calls of the library to find the exact data that are causing the crash? Thank you Best Regards Milan On 2015-03-11 16:07, Milan Roub

[sqlite] Libstringmetrics

2015-03-11 Thread Milan Roubal
solve this firstly question when and if I find a few of > time. > > However patches are welcomes. > :) > > Regards, > > Andrea Peri. > > Il 06/03/2015 17:00, Milan Roubal ha scritto: >> Dear all, >> I have some problems with >> https://github.

[sqlite] Libstringmetrics

2015-03-06 Thread Milan Roubal
s_distance","similarity",a.lastname, b.lastname,"") last_dist ...> from ...> (select "Milan" as firstname, "Roubal" as lastname ) a, ...> (select "Milan" as firstname, "roubal" as lastname ) b ...> ; M