From: Michael Trier Date: Thu, 11 Dec 2008 19:24:24 +0000 (+0000) Subject: Access doesn't support savepoints or two-phase commit. X-Git-Tag: rel_0_5_0~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ffbc9a84644713a28ffde2c5a72ecb981eb7551;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Access doesn't support savepoints or two-phase commit. --- diff --git a/test/testlib/requires.py b/test/testlib/requires.py index 13d4cdf11a..200fb01b11 100644 --- a/test/testlib/requires.py +++ b/test/testlib/requires.py @@ -68,7 +68,7 @@ def savepoints(fn): return _chain_decorators_on( fn, emits_warning_on('mssql', 'Savepoint support in mssql is experimental and may lead to data loss.'), - no_support('access', 'FIXME: guessing, needs confirmation'), + no_support('access', 'not supported by database'), no_support('sqlite', 'not supported by database'), no_support('sybase', 'FIXME: guessing, needs confirmation'), exclude('mysql', '<', (5, 0, 3), 'not supported by database'), @@ -96,7 +96,7 @@ def two_phase_transactions(fn): """Target database must support two-phase transactions.""" return _chain_decorators_on( fn, - no_support('access', 'FIXME: guessing, needs confirmation'), + no_support('access', 'not supported by database'), no_support('firebird', 'no SA implementation'), no_support('maxdb', 'not supported by database'), no_support('mssql', 'FIXME: guessing, needs confirmation'),