| 1716 | |
| 1717 | |
| 1718 | class _SentinelColumnCharacterization(NamedTuple): |
| 1719 | columns: Optional[Sequence[Column[Any]]] = None |
| 1720 | is_explicit: bool = False |
| 1721 | is_autoinc: bool = False |
| 1722 | default_characterization: _SentinelDefaultCharacterization = ( |
| 1723 | _SentinelDefaultCharacterization.NONE |
| 1724 | ) |
| 1725 | |
| 1726 | |
| 1727 | _COLKEY = TypeVar("_COLKEY", Union[None, str], str) |
no outgoing calls
no test coverage detected