From b462373b461f652ab20085a612ebd777836ac4da Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 5 Apr 2011 12:40:55 -0400 Subject: - 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] --- test/dialect/test_postgresql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/dialect/test_postgresql.py') 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)) ) -- cgit v1.2.1