summaryrefslogtreecommitdiff
path: root/test/engine/transaction.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-10-23 07:38:07 +0000
committerJason Kirtland <jek@discorporate.us>2007-10-23 07:38:07 +0000
commit6378c347994c902f7d4e65e54f2b76d01ce603d2 (patch)
tree1953746106c9fce1f53c16d2638923db5e7f9e7f /test/engine/transaction.py
parent21c6fa79b1e5b19c444c9cdc125d67825759330d (diff)
downloadsqlalchemy-6378c347994c902f7d4e65e54f2b76d01ce603d2.tar.gz
- Added initial version of MaxDB dialect.
- All optional test Sequences are now optional=True
Diffstat (limited to 'test/engine/transaction.py')
-rw-r--r--test/engine/transaction.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/engine/transaction.py b/test/engine/transaction.py
index 4c7c5ec04..b11065933 100644
--- a/test/engine/transaction.py
+++ b/test/engine/transaction.py
@@ -160,7 +160,7 @@ class TransactionTest(PersistTest):
connection.close()
- @testing.supported('postgres', 'mysql', 'oracle')
+ @testing.supported('postgres', 'mysql', 'oracle', 'maxdb')
@testing.exclude('mysql', '<', (5, 0, 3))
def testnestedsubtransactionrollback(self):
connection = testbase.db.connect()
@@ -178,7 +178,7 @@ class TransactionTest(PersistTest):
)
connection.close()
- @testing.supported('postgres', 'mysql', 'oracle')
+ @testing.supported('postgres', 'mysql', 'oracle', 'maxdb')
@testing.exclude('mysql', '<', (5, 0, 3))
def testnestedsubtransactioncommit(self):
connection = testbase.db.connect()
@@ -196,7 +196,7 @@ class TransactionTest(PersistTest):
)
connection.close()
- @testing.supported('postgres', 'mysql', 'oracle')
+ @testing.supported('postgres', 'mysql', 'oracle', 'maxdb')
@testing.exclude('mysql', '<', (5, 0, 3))
def testrollbacktosubtransaction(self):
connection = testbase.db.connect()
@@ -636,7 +636,7 @@ class ForUpdateTest(PersistTest):
break
con.close()
- @testing.supported('mysql', 'oracle', 'postgres')
+ @testing.supported('mysql', 'oracle', 'postgres', 'maxdb')
def testqueued_update(self):
"""Test SELECT FOR UPDATE with concurrent modifications.
@@ -698,7 +698,7 @@ class ForUpdateTest(PersistTest):
return errors
- @testing.supported('mysql', 'oracle', 'postgres')
+ @testing.supported('mysql', 'oracle', 'postgres', 'maxdb')
def testqueued_select(self):
"""Simple SELECT FOR UPDATE conflict test"""
@@ -707,7 +707,7 @@ class ForUpdateTest(PersistTest):
sys.stderr.write("Failure: %s\n" % e)
self.assert_(len(errors) == 0)
- @testing.supported('oracle', 'postgres')
+ @testing.supported('oracle', 'postgres', 'maxdb')
def testnowait_select(self):
"""Simple SELECT FOR UPDATE NOWAIT conflict test"""