Return a compiler appropriate for this ClauseElement, given a Dialect.
(self, dialect: Dialect, **kw: Any)
| 315 | return default.StrCompileDialect() |
| 316 | |
| 317 | def _compiler(self, dialect: Dialect, **kw: Any) -> Compiled: |
| 318 | """Return a compiler appropriate for this ClauseElement, given a |
| 319 | Dialect.""" |
| 320 | |
| 321 | if TYPE_CHECKING: |
| 322 | assert isinstance(self, ClauseElement) |
| 323 | return dialect.statement_compiler(dialect, self, **kw) |
| 324 | |
| 325 | def __str__(self) -> str: |
| 326 | return str(self.compile()) |
no outgoing calls
no test coverage detected