(self, parent: SchemaEventTarget, **kw: Any)
| 4721 | ) from ke |
| 4722 | |
| 4723 | def _set_parent(self, parent: SchemaEventTarget, **kw: Any) -> None: |
| 4724 | assert isinstance(parent, (Table, Column)) |
| 4725 | |
| 4726 | for col in self._col_expressions(parent): |
| 4727 | if col is not None: |
| 4728 | self._columns.add(col) |
| 4729 | |
| 4730 | |
| 4731 | class ColumnCollectionConstraint(ColumnCollectionMixin, Constraint): |
nothing calls this directly
no test coverage detected