]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
disabling triggers for Mysql since it requires SUPER privs
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 5 Apr 2009 02:29:45 +0000 (02:29 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 5 Apr 2009 02:29:45 +0000 (02:29 +0000)
test/testlib/requires.py

index 200fb01b112ca7be3b2775bc63d5873da8e415f2..b20929a83b419d1acead2fbbecd6a214cae75220 100644 (file)
@@ -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'),
         )