(self, col, _include_singleton_constants: bool = False)
| 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: |
| 57 | return tracer(super().replace, col) |
| 58 | |
| 59 | _orm_adapter_trace_context = contextvars.ContextVar("_tracer") |
| 60 |