From 64ba2c016995a679fe7c54b48ab807469987d370 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 28 Aug 2012 23:16:30 +0000 Subject: [PATCH] force MyISAM in here as newer MySQLs set to innodb by default, which breaks a ton of crap --- test/lib/schema.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/lib/schema.py b/test/lib/schema.py index 0cd38bc647..2328770d56 100644 --- a/test/lib/schema.py +++ b/test/lib/schema.py @@ -21,6 +21,8 @@ def Table(*args, **kw): if 'mysql_engine' not in kw and 'mysql_type' not in kw: if 'test_needs_fk' in test_opts or 'test_needs_acid' in test_opts: kw['mysql_engine'] = 'InnoDB' + else: + kw['mysql_engine'] = 'MyISAM' # Apply some default cascading rules for self-referential foreign keys. # MySQL InnoDB has some issues around seleting self-refs too. -- 2.47.3