Reproduce:
CREATE TABLE t(id INTEGER PRIMARY KEY AUTOINCREMENT, payload TEXT);
INSERT OR IGNORE INTO t(id,payload) VALUES (-42, 'tx_explicit_0');
SELECT name, seq FROM sqlite_sequence WHERE name='t';
SQLite returns t|0
tursodb returns
We don't initialize the sequence table unless a non-zero, or implicit (no provided rowid/PK) insert happens
Reproduce:
SQLite returns
t|0tursodb returns
We don't initialize the sequence table unless a non-zero, or implicit (no provided rowid/PK) insert happens