MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / visit_cast

Method visit_cast

lib/sqlalchemy/dialects/sqlite/base.py:1479–1483  ·  view source on GitHub ↗
(self, cast, **kwargs)

Source from the content-addressed store, hash-verified

1477 )
1478
1479 def visit_cast(self, cast, **kwargs):
1480 if self.dialect.supports_cast:
1481 return super().visit_cast(cast, **kwargs)
1482 else:
1483 return self.process(cast.clause, **kwargs)
1484
1485 def visit_extract(self, extract, **kw):
1486 try:

Callers

nothing calls this directly

Calls 1

processMethod · 0.45

Tested by

no test coverage detected