Re: [sqlite] Segfault when query again in-memory db

2017-11-01 Thread Peter Wang
Hi Richard Thanks for taking care of the issue. I was using the the ubuntu 16.04.3 with /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6, it's shipped byubuntu. I compiled the latest sqlite3 with the suggested params, I force the python to load the debug sqlite3.so and my app is not crashing now,

Re: [sqlite] Segfault when query again in-memory db

2017-10-31 Thread Keith Medcalf
>From: sqlite-users [mailto:sqlite-users- >boun...@mailinglists.sqlite.org] On Behalf Of Wang, Peter (Xu) >Sent: Tuesday, 31 October, 2017 02:21 >To: sqlite-users@mailinglists.sqlite.org >Cc: wangxu198...@gmail.com >Subject: [sqlite] Segfault when query again in-memory db > &g

Re: [sqlite] Segfault when query again in-memory db

2017-10-31 Thread Richard Hipp
On 10/31/17, Wang, Peter (Xu) wrote: > Hi > I am trying to provide a asychnonous queue based on sqlite3 in Python > Current, I already passted the file based tests with my queue > When switching file to in-memory db, I keep meeting a "segfault" issue when > running the same tests test suite > > Ca

[sqlite] Segfault when query again in-memory db

2017-10-31 Thread Wang, Peter (Xu)
Hi I am trying to provide a asychnonous queue based on sqlite3 in Python Current, I already passted the file based tests with my queue When switching file to in-memory db, I keep meeting a "segfault" issue when running the same tests test suite Can anyone help me out of this situation? I tested