diff options
author | Scott Dugas <scott.dugas@foundationdb.com> | 2014-10-30 11:06:45 -0400 |
---|---|---|
committer | Scott Dugas <scott.dugas@foundationdb.com> | 2014-10-30 11:06:45 -0400 |
commit | 5b3fc8743582db73642767cc6c101cf95f13464f (patch) | |
tree | 4a91f79bc76ee5589e372fc3b96beec6194698a7 /test/requirements.py | |
parent | e01dab9b1fbaf8325022c20f76ea9b99fbfdfd73 (diff) | |
download | sqlalchemy-5b3fc8743582db73642767cc6c101cf95f13464f.tar.gz |
Added requirement for temporary tables
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/requirements.py b/test/requirements.py index 432dc645c..21dd2913e 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -127,6 +127,11 @@ class DefaultRequirements(SuiteRequirements): ) @property + def temporary_table(self): + """Target database must support CREATE TEMPORARY TABLE""" + return exclusions.open() + + @property def reflectable_autoincrement(self): """Target database must support tables that can automatically generate PKs assuming they were reflected. |