tests: add test files for previous commit
Some checks failed
CI / build-docker (push) Successful in 7s
CI / build-docker-bootstrap (push) Has been skipped
CI / release-test (push) Failing after 31s

This commit is contained in:
wispem-wantex 2026-01-10 17:06:28 -08:00
parent 2ac9d8e775
commit a6cbbd3b39
4 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,3 @@
create table missing_rowid (
a integer primary key
) strict;

View File

@ -0,0 +1,4 @@
create table non_integer_rowid (
rowid text primary key,
a integer not null
) strict;

View File

@ -0,0 +1,4 @@
create table withrowidbutnotprimarykey (
rowid integer not null,
a integer primary key
) strict;

View File

@ -0,0 +1,4 @@
create table weirdrowid (
rowid integer primary key,
a integer not null
) strict, without rowid;