(self, parent: SchemaEventTarget, **kw: Any)
| 4341 | ) from ke |
| 4342 | |
| 4343 | def _set_parent(self, parent: SchemaEventTarget, **kw: Any) -> None: |
| 4344 | assert isinstance(parent, (Table, Column)) |
| 4345 | |
| 4346 | for col in self._col_expressions(parent): |
| 4347 | if col is not None: |
| 4348 | self._columns.add(col) |
| 4349 | |
| 4350 | |
| 4351 | class ColumnCollectionConstraint(ColumnCollectionMixin, Constraint): |
nothing calls this directly
no test coverage detected