fix: parser no longer breaks on encountering indexes that contain expression columns
All checks were successful
CI / build-docker (push) Successful in 16s
CI / build-docker-bootstrap (push) Has been skipped
CI / release-test (push) Successful in 47s

This commit is contained in:
2025-12-12 21:54:46 -08:00
parent f74da53c37
commit 89db9e14e2
3 changed files with 4 additions and 1 deletions

View File

@@ -43,6 +43,7 @@ create table foods (rowid integer primary key,
cook_ratio real not null default 1
) strict;
create index foods_protein on foods(protein);
create index foods_fake_index on foods(protein + 1);
create table units (rowid integer primary key,