(
col: ColumnClause[Any],
)
| 547 | return str_key |
| 548 | |
| 549 | def _getattr_col_key( |
| 550 | col: ColumnClause[Any], |
| 551 | ) -> Union[str, Tuple[str, str]]: |
| 552 | if col.table in _et: |
| 553 | return (col.table.name, col.key) # type: ignore |
| 554 | else: |
| 555 | return col.key |
| 556 | |
| 557 | def _col_bind_name(col: ColumnClause[Any]) -> str: |
| 558 | if col.table in _et: |
no outgoing calls
no test coverage detected