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 /lib/sqlalchemy | |
| parent | b8178a0bba3563281fdb9c6aa62b7440a427ad8e (diff) | |
| download | sqlalchemy-32a1db368599f6f3dbb3765ef5f11640d1725672.tar.gz | |
add a skip for oracle on this
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/testing/requirements.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index 706d6d060..1f6986942 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -374,6 +374,30 @@ class SuiteRequirements(Requirements): return exclusions.open() @property + def binary_comparisons(self): + """target database/driver can allow BLOB/BINARY fields to be compared + against a bound parameter value. + """ + + return exclusions.open() + + @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. + + """ + + return exclusions.open() + + @property def precision_numerics_general(self): """target backend has general support for moderately high-precision numerics.""" |
