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

@@ -39,6 +39,7 @@ type Index struct {
Columns []string
IsUnique bool `db:"is_unique"`
// TODO: `where ...` for partial indexes
// TODO: identify columns that are expressions
}
type Schema struct {