summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-12-20 15:47:30 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-12-20 15:47:30 +0000
commit6ac7e947f7fafbc41b90e67c1c215c59eaa7d5b0 (patch)
treea29b83e688d3637d6e40e6bd2d680a7c9c00497f /test/dialect/postgresql
parent414e5ff5d73bd4c2e2ece6deca13ccd9d3d5fc2a (diff)
parent33f15740a0b72bae64fc2c2f6d0f9724cfe9164a (diff)
downloadsqlalchemy-6ac7e947f7fafbc41b90e67c1c215c59eaa7d5b0.tar.gz
Merge "Add MACCADDR8 for PGCompiler" into main
Diffstat (limited to 'test/dialect/postgresql')
-rw-r--r--test/dialect/postgresql/test_types.py1
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),