summaryrefslogtreecommitdiff
path: root/test/engine/execute.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/execute.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/execute.py')
-rw-r--r--test/engine/execute.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/execute.py b/test/engine/execute.py
index 28faf1102..6cf3cccd9 100644
--- a/test/engine/execute.py
+++ b/test/engine/execute.py
@@ -18,7 +18,7 @@ class ExecuteTest(PersistTest):
def tearDownAll(self):
metadata.drop_all()
- @testing.supported('sqlite')
+ @testing.supported('sqlite', 'maxdb')
def test_raw_qmark(self):
for conn in (testbase.db, testbase.db.connect()):
conn.execute("insert into users (user_id, user_name) values (?, ?)", (1,"jack"))