MCPcopy Index your code
hub / github.com/marimo-team/marimo / SqlParseError

Class SqlParseError

marimo/_sql/parse.py:18–32  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

16
17
18class 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
35class SqlParseResult(msgspec.Struct):

Callers 2

_parse_sql_duckdbFunction · 0.85

Calls

no outgoing calls

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…