(
key: Union[ColumnClause[Any], str],
)
| 538 | ) |
| 539 | |
| 540 | def _column_as_key( |
| 541 | key: Union[ColumnClause[Any], str], |
| 542 | ) -> Union[str, Tuple[str, str]]: |
| 543 | str_key = c_key_role(key) |
| 544 | if hasattr(key, "table") and key.table in _et: |
| 545 | return (key.table.name, str_key) # type: ignore |
| 546 | else: |
| 547 | return str_key |
| 548 | |
| 549 | def _getattr_col_key( |
| 550 | col: ColumnClause[Any], |
no outgoing calls
no test coverage detected