@@ -111,19 +111,6 @@ class Column(SchemaItem, ColumnClause[_T]):
111111 nullable : bool = ..., onupdate : Any = ..., primary_key : bool = ..., server_default : Any = ...,
112112 server_onupdate : Union [FetchedValue , FunctionElement ] = ..., quote : Optional [bool ] = ..., unique : bool = ...,
113113 system : bool = ..., comment : str = ...) -> None : ...
114- # The two overloads below exist to make annotation more like a cast. This is a temporary measure.
115- @overload
116- def __init__ (self , name : str , type_ : Any , * args : Any , autoincrement : Union [bool , str ] = ...,
117- default : Any = ..., doc : str = ..., key : str = ..., index : bool = ..., info : Mapping [str , Any ] = ...,
118- nullable : bool = ..., onupdate : Any = ..., primary_key : bool = ..., server_default : Any = ...,
119- server_onupdate : Union [FetchedValue , FunctionElement ] = ..., quote : Optional [bool ] = ..., unique : bool = ...,
120- system : bool = ..., comment : str = ...) -> None : ...
121- @overload
122- def __init__ (self , type_ : Any , * args : Any , autoincrement : Union [bool , str ] = ...,
123- default : Any = ..., doc : str = ..., key : str = ..., index : bool = ..., info : Mapping [str , Any ] = ...,
124- nullable : bool = ..., onupdate : Any = ..., primary_key : bool = ..., server_default : Any = ...,
125- server_onupdate : Union [FetchedValue , FunctionElement ] = ..., quote : Optional [bool ] = ..., unique : bool = ...,
126- system : bool = ..., comment : str = ...) -> None : ...
127114 def references (self , column : Column [Any ]) -> bool : ...
128115 def append_foreign_key (self , fk : ForeignKey ) -> None : ...
129116 def copy (self : _C , ** kw : Any ) -> _C : ...
0 commit comments