From: Mike Bayer Date: Sun, 5 Apr 2009 02:29:45 +0000 (+0000) Subject: disabling triggers for Mysql since it requires SUPER privs X-Git-Tag: rel_0_5_4~32 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f77c9f950f361af9188598718bd61ae147b5d2f6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git disabling triggers for Mysql since it requires SUPER privs --- diff --git a/test/testlib/requires.py b/test/testlib/requires.py index 200fb01b11..b20929a83b 100644 --- a/test/testlib/requires.py +++ b/test/testlib/requires.py @@ -59,6 +59,7 @@ def row_triggers(fn): return _chain_decorators_on( fn, # no access to same table + no_support('mysql', 'requires SUPER priv'), exclude('mysql', '<', (5, 0, 10), 'not supported by database'), no_support('postgres', 'not supported by database: no statements'), )