(self, cols, current_adapter)
| 1859 | return alias.adapt_clause(element) |
| 1860 | |
| 1861 | def _adapt_col_list(self, cols, current_adapter): |
| 1862 | if current_adapter: |
| 1863 | return [current_adapter(o, True) for o in cols] |
| 1864 | else: |
| 1865 | return cols |
| 1866 | |
| 1867 | def _get_current_adapter(self): |
| 1868 | adapters = [] |
no outgoing calls
no test coverage detected