Re: [sqlite] 3.17.0 bug report: FTS5 insertion puts a wrong value in last_insert_rowid

2017-03-27 Thread Gwendal Roué
* Florian Weimer wrote: > * Gwendal Roué: > >> I have found a regression in SQLite 3.17.0. In the following SQL statements: >> >>CREATE VIRTUAL TABLE t1 USING FTS5(content); >>INSERT INTO t1(content) VALUES ('some text'); >>SELECT last_insert_rowid(); // 10

Re: [sqlite] 3.17.0 bug report: FTS5 insertion puts a wrong value in last_insert_rowid

2017-03-26 Thread Florian Weimer
* Gwendal Roué: > I have found a regression in SQLite 3.17.0. In the following SQL statements: > > CREATE VIRTUAL TABLE t1 USING FTS5(content); > INSERT INTO t1(content) VALUES ('some text'); > SELECT last_insert_rowid(); // 10 (wrong) > SELECT rowid FROM t1; // 1 > > The

[sqlite] 3.17.0 bug report: FTS5 insertion puts a wrong value in last_insert_rowid

2017-03-26 Thread Gwendal Roué
Hello, I have found a regression in SQLite 3.17.0. In the following SQL statements: CREATE VIRTUAL TABLE t1 USING FTS5(content); INSERT INTO t1(content) VALUES ('some text'); SELECT last_insert_rowid(); // 10 (wrong) SELECT rowid FROM t1; // 1 The expected value of the the