(self)
| 418 | return self |
| 419 | |
| 420 | def _default_compiler(self) -> SQLCompiler: |
| 421 | dialect = self._default_dialect() |
| 422 | return dialect.statement_compiler(dialect, self) # type: ignore |
| 423 | |
| 424 | def _clone(self, **kw: Any) -> Self: |
| 425 | """Create a shallow copy of this ClauseElement. |
no test coverage detected