diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2019-01-15 17:47:14 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2019-01-15 17:47:14 +0000 |
| commit | e1b299df819bc1a48ed565bd6efa8ee406ea7efa (patch) | |
| tree | f9008532688f8f312f4995af4c6601ea3b6d0d37 /lib/sqlalchemy/testing/requirements.py | |
| parent | 885f15a306efc4c907ca82fa13871992ee556466 (diff) | |
| parent | c0e6ebd70b04c7941b7750c77cd4329b043679f8 (diff) | |
| download | sqlalchemy-e1b299df819bc1a48ed565bd6efa8ee406ea7efa.tar.gz | |
Merge "Render N'' for SQL Server unicode literals"
Diffstat (limited to 'lib/sqlalchemy/testing/requirements.py')
| -rw-r--r-- | lib/sqlalchemy/testing/requirements.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index a17d26edb..3a2161740 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -733,6 +733,13 @@ class SuiteRequirements(Requirements): return exclusions.open() @property + def expressions_against_unbounded_text(self): + """target database supports use of an unbounded textual field in a + WHERE clause.""" + + return exclusions.open() + + @property def selectone(self): """target driver must support the literal statement 'select 1'""" return exclusions.open() |
