summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/requirements.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-12-28 17:50:19 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2013-12-28 17:50:19 -0500
commit1eb92e50d9845642940e7ab20906384bebec85fb (patch)
treec34b28805ce26c44c2be1e94f269d7cb44cf386c /lib/sqlalchemy/testing/requirements.py
parentcac7320eeb16e62f347dbf009a1b18edff7faa18 (diff)
downloadsqlalchemy-1eb92e50d9845642940e7ab20906384bebec85fb.tar.gz
- apply a similar fix for floats to mssql+pyodbc as we did to firebird
- wrangle through osx+pyodbc+freetds to get at least test_suite to pass again with mssql+pyodbc. invovled adding some silly requirements
Diffstat (limited to 'lib/sqlalchemy/testing/requirements.py')
-rw-r--r--lib/sqlalchemy/testing/requirements.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py
index 3e48ba026..60e966b3b 100644
--- a/lib/sqlalchemy/testing/requirements.py
+++ b/lib/sqlalchemy/testing/requirements.py
@@ -425,6 +425,16 @@ class SuiteRequirements(Requirements):
return exclusions.open()
@property
+ def fetch_null_from_numeric(self):
+ """target backend doesn't crash when you try to select a NUMERIC
+ value that has a value of NULL.
+
+ Added to support Pyodbc bug #351.
+ """
+
+ return exclusions.open()
+
+ @property
def text_type(self):
"""Target database must support an unbounded Text() "
"type such as TEXT or CLOB"""