(self, column: Column[Any], fk: ForeignKey)
| 5132 | self._set_parent_with_dispatch(table) |
| 5133 | |
| 5134 | def _append_element(self, column: Column[Any], fk: ForeignKey) -> None: |
| 5135 | self._columns.add(column) |
| 5136 | self.elements.append(fk) |
| 5137 | |
| 5138 | columns: ReadOnlyColumnCollection[str, Column[Any]] |
| 5139 | """A :class:`_expression.ColumnCollection` representing the set of columns |
no test coverage detected