diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2022-12-20 15:47:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-12-20 15:47:30 +0000 |
commit | 6ac7e947f7fafbc41b90e67c1c215c59eaa7d5b0 (patch) | |
tree | a29b83e688d3637d6e40e6bd2d680a7c9c00497f /test | |
parent | 414e5ff5d73bd4c2e2ece6deca13ccd9d3d5fc2a (diff) | |
parent | 33f15740a0b72bae64fc2c2f6d0f9724cfe9164a (diff) | |
download | sqlalchemy-6ac7e947f7fafbc41b90e67c1c215c59eaa7d5b0.tar.gz |
Merge "Add MACCADDR8 for PGCompiler" into main
Diffstat (limited to 'test')
-rw-r--r-- | test/dialect/postgresql/test_types.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index 4832d81d9..caa758b0d 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -3076,6 +3076,7 @@ class SpecialTypesTest(fixtures.TablesTest, ComparesTables): Column("bitstring", postgresql.BIT(4)), Column("addr", postgresql.INET), Column("addr2", postgresql.MACADDR), + Column("addr4", postgresql.MACADDR8), Column("price", postgresql.MONEY), Column("addr3", postgresql.CIDR), Column("doubleprec", postgresql.DOUBLE_PRECISION), |