(
self, col: ColumnElement[Any]
)
| 47 | |
| 48 | class _ORMAdapterTrace: |
| 49 | def _locate_col( |
| 50 | self, col: ColumnElement[Any] |
| 51 | ) -> Optional[ColumnElement[Any]]: |
| 52 | with self._tracer("_locate_col") as tracer: |
| 53 | return tracer(super()._locate_col, col) |
| 54 | |
| 55 | def replace(self, col, _include_singleton_constants: bool = False): |
| 56 | with self._tracer("replace") as tracer: |