(self, col: Column[Any])
| 5049 | self._set_parent_with_dispatch(self.table) |
| 5050 | |
| 5051 | def _replace(self, col: Column[Any]) -> None: |
| 5052 | PrimaryKeyConstraint._autoincrement_column._reset(self) # type: ignore |
| 5053 | self._columns.replace(col) |
| 5054 | |
| 5055 | self.dispatch._sa_event_column_added_to_pk_constraint(self, col) |
| 5056 | |
| 5057 | @property |
| 5058 | def columns_autoinc_first(self) -> List[Column[Any]]: |