diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-09 17:54:11 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-06-09 17:54:11 -0400 |
| commit | 258d2a8315a1362c2995c75507f849c01526d3d5 (patch) | |
| tree | 1c941250e9d6f575f6453c90d89c072e70aad7d1 /lib/sqlalchemy/testing/requirements.py | |
| parent | decf47a770b21da4bc66ad82d077fe069a1519f7 (diff) | |
| download | sqlalchemy-258d2a8315a1362c2995c75507f849c01526d3d5.tar.gz | |
- get_unique_constraints() pull request
- version (0.9 for now)
- changelog
- move the test into the test suite so that all dialects can take advantage of it
Diffstat (limited to 'lib/sqlalchemy/testing/requirements.py')
| -rw-r--r-- | lib/sqlalchemy/testing/requirements.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index e032cdd4a..0350cd06b 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -265,6 +265,11 @@ class SuiteRequirements(Requirements): return exclusions.open() @property + def unique_constraint_reflection(self): + """target dialect supports reflection of unique constraints""" + return exclusions.open() + + @property def unbounded_varchar(self): """Target database must support VARCHAR with no length""" |
