(
key: Union[ColumnClause[Any], str],
)
| 601 | ) |
| 602 | |
| 603 | def _column_as_key( |
| 604 | key: Union[ColumnClause[Any], str], |
| 605 | ) -> Union[str, Tuple[str, str]]: |
| 606 | str_key = c_key_role(key) |
| 607 | if hasattr(key, "table") and key.table in _et: |
| 608 | return (key.table.name, str_key) # type: ignore |
| 609 | else: |
| 610 | return str_key |
| 611 | |
| 612 | def _getattr_col_key( |
| 613 | col: ColumnClause[Any], |
no outgoing calls
no test coverage detected