diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-02-27 20:03:33 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-02-27 20:03:33 +0000 |
commit | cd6af2e03b8ffba0c7d6b8906c178fd1aa742920 (patch) | |
tree | 4da300a9f8441274624b3db49236322476954c07 /lib/sqlalchemy/test/requires.py | |
parent | 8b1096eea4fdc081a803279c57226ac07481d788 (diff) | |
download | sqlalchemy-cd6af2e03b8ffba0c7d6b8906c178fd1aa742920.tar.gz |
working on pyodbc / mxodbc
Diffstat (limited to 'lib/sqlalchemy/test/requires.py')
-rw-r--r-- | lib/sqlalchemy/test/requires.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/sqlalchemy/test/requires.py b/lib/sqlalchemy/test/requires.py index c97e6f5bb..0bf4689df 100644 --- a/lib/sqlalchemy/test/requires.py +++ b/lib/sqlalchemy/test/requires.py @@ -190,6 +190,12 @@ def unicode_ddl(fn): exclude('mysql', '<', (4, 1, 1), 'no unicode connection support'), ) +def sane_rowcount(fn): + return _chain_decorators_on( + fn, + skip_if(lambda: not testing.db.dialect.supports_sane_rowcount) + ) + def python2(fn): return _chain_decorators_on( fn, |