Represents a single SQL parse error. Attributes: message (str): Description of the error. line (int): Line number where the error occurred (1-based). column (int): Column number where the error occurred (1-based). severity (Literal["error", "warning"]): Seve
| 16 | |
| 17 | |
| 18 | class SqlParseError(msgspec.Struct): |
| 19 | """ |
| 20 | Represents a single SQL parse error. |
| 21 | |
| 22 | Attributes: |
| 23 | message (str): Description of the error. |
| 24 | line (int): Line number where the error occurred (1-based). |
| 25 | column (int): Column number where the error occurred (1-based). |
| 26 | severity (Literal["error", "warning"]): Severity of the error. |
| 27 | """ |
| 28 | |
| 29 | message: str |
| 30 | line: int |
| 31 | column: int |
| 32 | severity: Literal["error", "warning"] |
| 33 | |
| 34 | |
| 35 | class SqlParseResult(msgspec.Struct): |
no outgoing calls
searching dependent graphs…