MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / BigInteger

Class BigInteger

lib/sqlalchemy/sql/sqltypes.py:436–444  ·  view source on GitHub ↗

A type for bigger ``int`` integers. Typically generates a ``BIGINT`` in DDL, and otherwise acts like a normal :class:`.Integer` on the Python side.

Source from the content-addressed store, hash-verified

434
435
436class 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])

Callers 2

load_dialect_implMethod · 0.90
sqltypes.pyFile · 0.85

Calls

no outgoing calls

Tested by 1

load_dialect_implMethod · 0.72