From 8ffbc9a84644713a28ffde2c5a72ecb981eb7551 Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Thu, 11 Dec 2008 19:24:24 +0000 Subject: [PATCH] Access doesn't support savepoints or two-phase commit. --- test/testlib/requires.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'), -- 2.47.3