Result of parsing an SQL query. Attributes: success (bool): True if parsing succeeded without errors. errors (list[SqlParseError]): List of parse errors (empty if success is True).
| 33 | |
| 34 | |
| 35 | class SqlParseResult(msgspec.Struct): |
| 36 | """ |
| 37 | Result of parsing an SQL query. |
| 38 | |
| 39 | Attributes: |
| 40 | success (bool): True if parsing succeeded without errors. |
| 41 | errors (list[SqlParseError]): List of parse errors (empty if success is True). |
| 42 | """ |
| 43 | |
| 44 | success: bool |
| 45 | errors: list[SqlParseError] |
| 46 | |
| 47 | |
| 48 | class SqlCatalogCheckResult(msgspec.Struct): |
no outgoing calls
searching dependent graphs…