summaryrefslogtreecommitdiff
path: root/test/sql/defaults.py
diff options
context:
space:
mode:
authorPaul Johnston <paj@pajhome.org.uk>2007-11-25 23:36:20 +0000
committerPaul Johnston <paj@pajhome.org.uk>2007-11-25 23:36:20 +0000
commit6753cb7f72be3fa92fa986ddb185e164af78c6dc (patch)
treec4e55bdd612b025dbdda23501282b6f09e922888 /test/sql/defaults.py
parent2c873f0ee45db04cb880de7c24b56564eb9605a4 (diff)
downloadsqlalchemy-6753cb7f72be3fa92fa986ddb185e164af78c6dc.tar.gz
MSSQL doesn't support subqueries in insert values; disable test
Diffstat (limited to 'test/sql/defaults.py')
-rw-r--r--test/sql/defaults.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/defaults.py b/test/sql/defaults.py
index da23a67a2..c385b0ac6 100644
--- a/test/sql/defaults.py
+++ b/test/sql/defaults.py
@@ -261,6 +261,7 @@ class PKDefaultTest(PersistTest):
def tearDownAll(self):
metadata.drop_all()
+ @testing.unsupported('mssql')
def test_basic(self):
t2.insert().execute(nextid=1)
r = t1.insert().execute(data='hi')