Result of running validation against the database.
| 46 | |
| 47 | |
| 48 | class SqlCatalogCheckResult(msgspec.Struct): |
| 49 | """ |
| 50 | Result of running validation against the database. |
| 51 | """ |
| 52 | |
| 53 | success: bool |
| 54 | error_message: str | None |
| 55 | |
| 56 | |
| 57 | def parse_sql( |
no outgoing calls
searching dependent graphs…