(
self: Table[_TC_co],
name: str,
metadata: MetaData,
typed_columns_cls: type[_TC_co],
/,
*args: SchemaItem,
schema: str | Literal[SchemaConst.BLANK_SCHEMA] | None = None,
quote: bool | None = None,
quote_schema: bool | None = None,
keep_existing: bool = False,
extend_existing: bool = False,
implicit_returning: bool = True,
comment: str | None = None,
info: dict[Any, Any] | None = None,
listeners: (
_typing_Sequence[tuple[str, Callable[..., Any]]] | None
) = None,
prefixes: _typing_Sequence[str] | None = None,
**kw: Any,
)
| 560 | |
| 561 | @overload |
| 562 | def __init__( |
| 563 | self: Table[_TC_co], |
| 564 | name: str, |
| 565 | metadata: MetaData, |
| 566 | typed_columns_cls: type[_TC_co], |
| 567 | /, |
| 568 | *args: SchemaItem, |
| 569 | schema: str | Literal[SchemaConst.BLANK_SCHEMA] | None = None, |
| 570 | quote: bool | None = None, |
| 571 | quote_schema: bool | None = None, |
| 572 | keep_existing: bool = False, |
| 573 | extend_existing: bool = False, |
| 574 | implicit_returning: bool = True, |
| 575 | comment: str | None = None, |
| 576 | info: dict[Any, Any] | None = None, |
| 577 | listeners: ( |
| 578 | _typing_Sequence[tuple[str, Callable[..., Any]]] | None |
| 579 | ) = None, |
| 580 | prefixes: _typing_Sequence[str] | None = None, |
| 581 | **kw: Any, |
| 582 | ) -> None: ... |
| 583 | |
| 584 | @overload |
| 585 | def __init__( |
no test coverage detected