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
@@ -17,7 +17,7 @@ func TestParserDelete(t *testing.T) {
db, tx, cleanup := testutil.NewTestTx(t)
defer cleanup()
testutil.MustExec(t, db, tx, "CREATE TABLE test(age int)")
testutil.MustExec(t, db, tx, "CREATE TABLE test(age int primary key)")
parseExpr := func(s string) expr.Expr {
e := parser.MustParseExpr(s)