From 32a1db368599f6f3dbb3765ef5f11640d1725672 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 1 Feb 2014 13:22:43 -0500 Subject: add a skip for oracle on this --- lib/sqlalchemy/testing/requirements.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'lib') 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 @@ -373,6 +373,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 -- cgit v1.2.1