(self, column: Column[Any], fk: ForeignKey)
| 4752 | self._set_parent_with_dispatch(table) |
| 4753 | |
| 4754 | def _append_element(self, column: Column[Any], fk: ForeignKey) -> None: |
| 4755 | self._columns.add(column) |
| 4756 | self.elements.append(fk) |
| 4757 | |
| 4758 | columns: ReadOnlyColumnCollection[str, Column[Any]] |
| 4759 | """A :class:`_expression.ColumnCollection` representing the set of columns |
no test coverage detected