diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-27 13:05:32 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-27 13:05:32 -0500 |
commit | 0cba61d150b84646f8da02cff66e25e9542f92a6 (patch) | |
tree | 0fb813dfb091aded1d81c2c18e35851de993060b /lib/sqlalchemy/testing/requirements.py | |
parent | c837dc485eb0125b9993bbb11ba3afb5077142a9 (diff) | |
download | sqlalchemy-0cba61d150b84646f8da02cff66e25e9542f92a6.tar.gz |
- repair some suite tests for firebird
Diffstat (limited to 'lib/sqlalchemy/testing/requirements.py')
-rw-r--r-- | lib/sqlalchemy/testing/requirements.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index e48fa2c00..3e48ba026 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -139,6 +139,20 @@ class SuiteRequirements(Requirements): return exclusions.open() @property + def fetch_rows_post_commit(self): + """target platform will allow cursor.fetchone() to proceed after a + COMMIT. + + Typically this refers to an INSERT statement with RETURNING which + is invoked within "autocommit". If the row can be returned + after the autocommit, then this rule can be open. + + """ + + return exclusions.open() + + + @property def empty_inserts(self): """target platform supports INSERT with no values, i.e. INSERT DEFAULT VALUES or equivalent.""" |