diff options
Diffstat (limited to 'mysql-test/t/events_restart.test')
-rw-r--r-- | mysql-test/t/events_restart.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/events_restart.test b/mysql-test/t/events_restart.test index 7f01859e059..3ad4938d5bf 100644 --- a/mysql-test/t/events_restart.test +++ b/mysql-test/t/events_restart.test @@ -38,11 +38,13 @@ create event abc3 on schedule every 1 second do # type of the 'body' field to blob. # # First, let's do a backup to not depend on actual definition of mysql.event +set sql_mode = 'NO_ENGINE_SUBSTITUTION'; create table event_like like mysql.event; insert into event_like select * from mysql.event; # Now let's alter the table and restart the server alter table mysql.event change column body body longtext character set utf8 collate utf8_bin; +set sql_mode = DEFAULT; --echo "Now we restart the server" --source include/restart_mysqld.inc |