diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-02-01 13:22:43 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-02-01 13:22:43 -0500 |
commit | 32a1db368599f6f3dbb3765ef5f11640d1725672 (patch) | |
tree | 6f71f1906d2e4213d2dfa52c015a40ddf6abc9c0 /test/requirements.py | |
parent | b8178a0bba3563281fdb9c6aa62b7440a427ad8e (diff) | |
download | sqlalchemy-32a1db368599f6f3dbb3765ef5f11640d1725672.tar.gz |
add a skip for oracle on this
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/requirements.py b/test/requirements.py index 29b7d9997..c75a110c6 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -144,6 +144,26 @@ class DefaultRequirements(SuiteRequirements): ) @property + def binary_literals(self): + """target backend supports simple binary literals, e.g. an + expression like:: + + SELECT CAST('foo' AS BINARY) + + Where ``BINARY`` is the type emitted from :class:`.LargeBinary`, + e.g. it could be ``BLOB`` or similar. + + Basically fails on Oracle. + + """ + # adding mssql here since it doesn't support comparisons either, + # have observed generally bad behavior with binary / mssql. + + return skip_if(["oracle", "mssql"], + "not supported by database/driver" + ) + + @property def independent_cursors(self): """Target must support simultaneous, independent database cursors on a single connection.""" @@ -499,6 +519,7 @@ class DefaultRequirements(SuiteRequirements): return skip_if(['mssql', 'mysql', 'firebird', '+zxjdbc', 'oracle', 'sybase']) + @property def precision_numerics_general(self): """target backend has general support for moderately high-precision |