(self, cast, **kwargs)
| 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: |