sqlite_lint: add lint checks for rowid and without rowid
Some checks failed
CI / build-docker (push) Successful in 7s
CI / build-docker-bootstrap (push) Has been skipped
CI / release-test (push) Failing after 15s

This commit is contained in:
2026-01-10 17:04:20 -08:00
parent 560e461b00
commit 2ac9d8e775
7 changed files with 70 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ create table stuff (
) strict;
create table stuff2 (
weird_pk integer primary key,
rowid integer primary key,
label text not null unique,
stuff_id integer references stuff(rowid),
alternative_stuff_id integer references stuff(amount)