diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-09-30 20:55:00 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-09-30 20:55:00 +0000 |
commit | 0d8ba830467f065b5778f4b119dbd3a3c276a845 (patch) | |
tree | ef90a61fcc3525835e078cec67d6c190f0601357 /test/dialect/test_postgresql.py | |
parent | e9acc2418f93e296ac9d28e4c393eef789404ef7 (diff) | |
download | sqlalchemy-0d8ba830467f065b5778f4b119dbd3a3c276a845.tar.gz |
added a test for #1085
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index c27e24e43..3fa12c5dd 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -1156,7 +1156,9 @@ class SpecialTypesTest(TestBase, ComparesTables): Column('flag', postgresql.PGBit), Column('addr', postgresql.PGInet), Column('addr2', postgresql.PGMacAddr), - Column('addr3', postgresql.PGCidr) + Column('addr3', postgresql.PGCidr), + Column('doubleprec', postgresql.DOUBLE_PRECISION) + ) metadata.create_all() @@ -1169,7 +1171,7 @@ class SpecialTypesTest(TestBase, ComparesTables): m = MetaData(testing.db) t = Table('sometable', m, autoload=True) - self.assert_tables_equal(table, t) + self.assert_tables_equal(table, t, strict_types=True) class MatchTest(TestBase, AssertsCompiledSQL): |