(self)
| 318 | return self._compiler(dialect, **kw) |
| 319 | |
| 320 | def _default_dialect(self): |
| 321 | default = util.preloaded.engine_default |
| 322 | return default.StrCompileDialect() |
| 323 | |
| 324 | def _compiler(self, dialect: Dialect, **kw: Any) -> Compiled: |
| 325 | """Return a compiler appropriate for this ClauseElement, given a |
no outgoing calls
no test coverage detected