(col: ColumnClause[Any])
| 618 | return col.key |
| 619 | |
| 620 | def _col_bind_name(col: ColumnClause[Any]) -> str: |
| 621 | if col.table in _et: |
| 622 | if TYPE_CHECKING: |
| 623 | assert isinstance(col.table, TableClause) |
| 624 | return "%s_%s" % (col.table.name, col.key) |
| 625 | else: |
| 626 | return col.key |
| 627 | |
| 628 | else: |
| 629 | _column_as_key = functools.partial( |
no outgoing calls
no test coverage detected