MDEV-9026: Revert patch for MDEV-6069
Post-fix: Reverting the patch for MDEV-6069 brought some ALTERs with ENGINE=MYISAM back into the mysql_system_tables_fix.sql script. As a result, running mysql_upgrade with global enforce_storage_engine=INNODB (or any other non-MyISAM engine, for that matter) would fail. Fixed by locally unsetting enforce_storage_engine in the upgrade script.
This commit is contained in:
parent
1216429cfd
commit
f9e320c82d
@ -1,5 +1,5 @@
|
||||
-- Copyright (C) 2003, 2013 Oracle and/or its affiliates.
|
||||
-- Copyright (C) 2010, 2014 SkySQL Ab.
|
||||
-- Copyright (C) 2010, 2015 MariaDB Corporation Ab.
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
@ -26,6 +26,7 @@
|
||||
|
||||
set sql_mode='';
|
||||
set storage_engine=MyISAM;
|
||||
set enforce_storage_engine=NULL;
|
||||
|
||||
ALTER TABLE user add File_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user