remove rowid

This commit is contained in:
Asdine El Hrychy
2025-09-07 23:24:53 +08:00
parent ab8a0d4cf9
commit 613ca304f4
85 changed files with 636 additions and 658 deletions
+1 -1
View File
@@ -217,7 +217,7 @@ func TestParserInsert(t *testing.T) {
db, tx, cleanup := testutil.NewTestTx(t)
defer cleanup()
testutil.MustExec(t, db, tx, "CREATE TABLE test(a TEXT, b TEXT); CREATE TABLE foo(c TEXT, d TEXT);")
testutil.MustExec(t, db, tx, "CREATE TABLE test(a TEXT PRIMARY KEY, b TEXT); CREATE TABLE foo(c TEXT PRIMARY KEY, d TEXT);")
stmts, err := parser.ParseQuery(test.s)
if test.fails {