Re: [sqlite] Table-valued function crashing in SQLite 3.20

2017-09-12 Thread raypoker79
/17 5:31 PM (GMT-05:00) To: SQLite mailing list <sqlite-users@mailinglists.sqlite.org> Subject: Re: [sqlite] Table-valued function crashing in SQLite 3.20 > On Sep 12, 2017, at 1:00 PM, Jens Alfke <j...@mooseyard.com> wrote: > > Thanks, this does look like exactly the

Re: [sqlite] Table-valued function crashing in SQLite 3.20

2017-09-12 Thread Jens Alfke
> On Sep 12, 2017, at 1:00 PM, Jens Alfke wrote: > > Thanks, this does look like exactly the same bug. > But the latest snapshot at http://www.sqlite.org/download.html >

Re: [sqlite] Table-valued function crashing in SQLite 3.20

2017-09-12 Thread Jens Alfke
> On Sep 12, 2017, at 10:50 AM, Richard Hipp wrote: > > The proposed fix for your problem is from 20170904 - > https://www.sqlite.org/src/info/c7f9f47b239fdd99 > > > I have uploaded a new snapshot for you. Thanks, this does

Re: [sqlite] Table-valued function crashing in SQLite 3.20

2017-09-12 Thread Richard Hipp
On 9/12/17, Jens Alfke wrote: > > >> On Sep 11, 2017, at 4:20 PM, Richard Hipp wrote: >> >> Does it work on trunk? > > I downloaded "sqlite-snapshot-201708251543.tar.gz”, used the included > sqlite3.{c,h}, and got exactly the same crash. > The proposed fix

Re: [sqlite] Table-valued function crashing in SQLite 3.20

2017-09-12 Thread Jens Alfke
> On Sep 11, 2017, at 4:20 PM, Richard Hipp wrote: > > Does it work on trunk? I downloaded "sqlite-snapshot-201708251543.tar.gz”, used the included sqlite3.{c,h}, and got exactly the same crash. —Jens ___ sqlite-users mailing list

Re: [sqlite] Table-valued function crashing in SQLite 3.20

2017-09-11 Thread Richard Hipp
On 9/11/17, Jens Alfke wrote: > We have a virtual table serving as a table-valued function, which has worked > fine up through SQLite 3.19, but now in 3.20.1 is crashing whenever it’s > used. Does it work on trunk? -- D. Richard Hipp d...@sqlite.org

Re: [sqlite] Table-valued function crashing in SQLite 3.20

2017-09-11 Thread Jens Alfke
For what it’s worth, the instructions generated in 3.19.2 (which don't crash) are slightly different: the OpenRead and Rewind instructions are at the top, not down at location 15 — 0 Init0 24 0 00 Start at 24 1 OpenRead0

[sqlite] Table-valued function crashing in SQLite 3.20

2017-09-11 Thread Jens Alfke
We have a virtual table serving as a table-valued function, which has worked fine up through SQLite 3.19, but now in 3.20.1 is crashing whenever it’s used. I know there were changes in 3.20 relating to native functions taking pointers, but this doesn’t seem to be related to that. Were there any