A type for bigger ``int`` integers. Typically generates a ``BIGINT`` in DDL, and otherwise acts like a normal :class:`.Integer` on the Python side.
| 434 | |
| 435 | |
| 436 | class BigInteger(Integer): |
| 437 | """A type for bigger ``int`` integers. |
| 438 | |
| 439 | Typically generates a ``BIGINT`` in DDL, and otherwise acts like |
| 440 | a normal :class:`.Integer` on the Python side. |
| 441 | |
| 442 | """ |
| 443 | |
| 444 | __visit_name__ = "big_integer" |
| 445 | |
| 446 | |
| 447 | _N = TypeVar("_N", bound=Union[decimal.Decimal, float]) |
no outgoing calls