MCPcopy
hub / github.com/marimo-team/marimo / SqlParseResult

Class SqlParseResult

marimo/_sql/parse.py:35–45  ·  view source on GitHub ↗

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).

Source from the content-addressed store, hash-verified

33
34
35class 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
48class SqlCatalogCheckResult(msgspec.Struct):

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…