summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-04-05 12:40:55 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-04-05 12:40:55 -0400
commitb462373b461f652ab20085a612ebd777836ac4da (patch)
tree23e6a5b67e04549a1e02c5e153217ff39f500f60 /test/dialect/test_postgresql.py
parentd34bc7da318978f6d0235e5747e94160959eb276 (diff)
downloadsqlalchemy-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.py2
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))
)