From: Paul Johnston Date: Sun, 25 Nov 2007 23:36:20 +0000 (+0000) Subject: MSSQL doesn't support subqueries in insert values; disable test X-Git-Tag: rel_0_4_2~137 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=6753cb7f72be3fa92fa986ddb185e164af78c6dc;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git MSSQL doesn't support subqueries in insert values; disable test --- diff --git a/test/sql/defaults.py b/test/sql/defaults.py index da23a67a21..c385b0ac6b 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')