diff options
| author | asimfarooq5 <asimfarooq5@gmail.com> | 2022-12-14 15:32:47 -0500 |
|---|---|---|
| committer | Federico Caselli <cfederico87@gmail.com> | 2022-12-19 20:27:30 +0100 |
| commit | 33f15740a0b72bae64fc2c2f6d0f9724cfe9164a (patch) | |
| tree | 89a9bdb0ec3091cdc80bfdf0b2c3dc9039773819 /lib/sqlalchemy/dialects/postgresql/__init__.py | |
| parent | a8d76cff39dbaf6354d42d35cd68332df469d124 (diff) | |
| download | sqlalchemy-33f15740a0b72bae64fc2c2f6d0f9724cfe9164a.tar.gz | |
Add MACCADDR8 for PGCompiler
Add MACCADDR8 for PGCompiler
Closes: #8393
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/8393
Pull-request-sha: 837a68eba3e31e0acbb7c47ee87bca4e9def7648
Change-Id: I87e4999eb8d82662ff8ab409c98dc57edd7fd271
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/dialects/postgresql/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/__init__.py b/lib/sqlalchemy/dialects/postgresql/__init__.py index 7890541ff..97d5ac84e 100644 --- a/lib/sqlalchemy/dialects/postgresql/__init__.py +++ b/lib/sqlalchemy/dialects/postgresql/__init__.py @@ -69,6 +69,7 @@ from .types import CIDR from .types import INET from .types import INTERVAL from .types import MACADDR +from .types import MACADDR8 from .types import MONEY from .types import OID from .types import REGCLASS @@ -99,6 +100,7 @@ __all__ = ( "UUID", "BIT", "MACADDR", + "MACADDR8", "MONEY", "OID", "REGCLASS", |
