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

Class ValidateSQLResultNotification

marimo/_messaging/notification.py:740–754  ·  view source on GitHub ↗

SQL query validation result. Attributes: request_id: Request ID this responds to. parse_result: SQL parsing result. validate_result: Catalog validation result. error: Error message if failed.

Source from the content-addressed store, hash-verified

738
739
740class ValidateSQLResultNotification(Notification, tag="validate-sql-result"):
741 """SQL query validation result.
742
743 Attributes:
744 request_id: Request ID this responds to.
745 parse_result: SQL parsing result.
746 validate_result: Catalog validation result.
747 error: Error message if failed.
748 """
749
750 name: ClassVar[str] = "validate-sql-result"
751 request_id: RequestId
752 parse_result: SqlParseResult | None = None
753 validate_result: SqlCatalogCheckResult | None = None
754 error: str | None = None
755
756
757class QueryParamsSetNotification(Notification, tag="query-params-set"):

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…