]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
cx_oracle adjust
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 18 Mar 2010 16:10:29 +0000 (16:10 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 18 Mar 2010 16:10:29 +0000 (16:10 +0000)
test/sql/test_types.py

index 65260a7aa5055ed9b5048920af809a0e199bdffa..dfb30c207520416534e315153797b0a29636f539 100644 (file)
@@ -1144,7 +1144,7 @@ class NumericTest(TestBase, AssertsExecutionResults):
 
             ret = set([row[0] for row in testing.db.execute(t.select()).fetchall()])
             
-            if testing.against('sqlite', 'sybase+pysybase'):
+            if testing.against('sqlite', 'sybase+pysybase', 'oracle+cx_oracle'):
                 numbers = set(round_decimal(n, 11) for n in numbers)
                 ret = set(round_decimal(n, 11) for n in ret)
             else: