(code: string, expected: string)
| 473 | } |
| 474 | |
| 475 | const matchesSqliteCode = (code: string, expected: string): boolean => |
| 476 | code === expected || code.startsWith(expected + "_") |
| 477 | |
| 478 | const UNKNOWN_CONSTRAINT = "unknown" |
| 479 | const SQLITE_CONSTRAINT_UNIQUE = "SQLITE_CONSTRAINT_UNIQUE" |
no outgoing calls
no test coverage detected