Return True if the given :class:`_schema.Table` is referenced by this :class:`_schema.ForeignKey`.
(self, table: Table)
| 3043 | target_fullname = property(_get_colspec) |
| 3044 | |
| 3045 | def references(self, table: Table) -> bool: |
| 3046 | """Return True if the given :class:`_schema.Table` |
| 3047 | is referenced by this |
| 3048 | :class:`_schema.ForeignKey`.""" |
| 3049 | |
| 3050 | return table.corresponding_column(self.column) is not None |
| 3051 | |
| 3052 | def get_referent(self, table: FromClause) -> Optional[Column[Any]]: |
| 3053 | """Return the :class:`_schema.Column` in the given |
nothing calls this directly
no test coverage detected