diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-04-05 12:40:55 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-04-05 12:40:55 -0400 |
commit | b462373b461f652ab20085a612ebd777836ac4da (patch) | |
tree | 23e6a5b67e04549a1e02c5e153217ff39f500f60 /test/dialect/test_postgresql.py | |
parent | d34bc7da318978f6d0235e5747e94160959eb276 (diff) | |
download | sqlalchemy-b462373b461f652ab20085a612ebd777836ac4da.tar.gz |
- REAL has been added to the core types. Supported
by Postgresql, SQL Server, MySQL, SQLite. Note
that the SQL Server and MySQL versions, which
add extra arguments, are also still available
from those dialects. [ticket:2081]
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index bbf476560..1f8a87bc0 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -287,7 +287,7 @@ class FloatCoercionTest(fixtures.TablesTest, AssertsExecutionResults): metadata = self.metadata t1 = Table('t', metadata, Column('x', postgresql.ARRAY(Float)), - Column('y', postgresql.ARRAY(postgresql.REAL)), + Column('y', postgresql.ARRAY(REAL)), Column('z', postgresql.ARRAY(postgresql.DOUBLE_PRECISION)), Column('q', postgresql.ARRAY(Numeric)) ) |