(
self, col: ColumnElement[Any]
)
| 1347 | adapt_list = ClauseAdapter.copy_and_process |
| 1348 | |
| 1349 | def adapt_check_present( |
| 1350 | self, col: ColumnElement[Any] |
| 1351 | ) -> Optional[ColumnElement[Any]]: |
| 1352 | newcol = self.columns[col] |
| 1353 | |
| 1354 | if newcol is col and self._corresponding_column(col, True) is None: |
| 1355 | return None |
| 1356 | |
| 1357 | return newcol |
| 1358 | |
| 1359 | def _locate_col( |
| 1360 | self, col: ColumnElement[Any] |
nothing calls this directly
no test coverage detected