From: Lele Gaifax Date: Sun, 27 Apr 2008 08:54:36 +0000 (+0000) Subject: Savepoints are supported under Firebird X-Git-Tag: rel_0_5beta1~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ffe47e32bcba0c4f4f5d6669dbd3945443e10dd;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Savepoints are supported under Firebird --- diff --git a/test/engine/transaction.py b/test/engine/transaction.py index 9cf13e6932..edae14da29 100644 --- a/test/engine/transaction.py +++ b/test/engine/transaction.py @@ -160,7 +160,7 @@ class TransactionTest(TestBase): connection.close() - @testing.unsupported('sqlite', 'mssql', 'firebird', 'sybase', 'access') + @testing.unsupported('sqlite', 'mssql', 'sybase', 'access') @testing.exclude('mysql', '<', (5, 0, 3)) def testnestedsubtransactionrollback(self): connection = testing.db.connect() @@ -178,7 +178,7 @@ class TransactionTest(TestBase): ) connection.close() - @testing.unsupported('sqlite', 'mssql', 'firebird', 'sybase', 'access') + @testing.unsupported('sqlite', 'mssql', 'sybase', 'access') @testing.exclude('mysql', '<', (5, 0, 3)) def testnestedsubtransactioncommit(self): connection = testing.db.connect() @@ -196,7 +196,7 @@ class TransactionTest(TestBase): ) connection.close() - @testing.unsupported('sqlite', 'mssql', 'firebird', 'sybase', 'access') + @testing.unsupported('sqlite', 'mssql', 'sybase', 'access') @testing.exclude('mysql', '<', (5, 0, 3)) def testrollbacktosubtransaction(self): connection = testing.db.connect()