]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
MSSQL doesn't support subqueries in insert values; disable test
authorPaul Johnston <paj@pajhome.org.uk>
Sun, 25 Nov 2007 23:36:20 +0000 (23:36 +0000)
committerPaul Johnston <paj@pajhome.org.uk>
Sun, 25 Nov 2007 23:36:20 +0000 (23:36 +0000)
test/sql/defaults.py

index da23a67a21f54086bfbc3f5a966184ad6ef0a170..c385b0ac6b6b62d0e0d5cfbc9364b8cd4e4f45a6 100644 (file)
@@ -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')