revision-id: 85d23f0bd39dc76c7446bbae0b81379a4da18276 (mariadb-10.1.39-71-g85d23f0bd39) parent(s): abba70496923f21410aa78a85bc227a96cfd6cfe author: Sachin committer: Sachin timestamp: 2019-06-27 11:16:05 +0530 message: Fix galera_sync_wait_show.test Since the purpose of event is just to see on second node whether it is created or not And we are not goint to execute the event also. So instead of setting GLOBAL event_scheduler=ON and then turning it off, we can just disable the warning. --- mysql-test/suite/galera/t/galera_sync_wait_show.test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/suite/galera/t/galera_sync_wait_show.test b/mysql-test/suite/galera/t/galera_sync_wait_show.test index 58de5433030..79a1b6ad479 100644 --- a/mysql-test/suite/galera/t/galera_sync_wait_show.test +++ b/mysql-test/suite/galera/t/galera_sync_wait_show.test @@ -63,7 +63,9 @@ DROP TABLE t1; --connection node_1 +--disable_warnings CREATE EVENT event1 ON SCHEDULE AT '2038-01-01 23:59:59' DO SELECT 1; +--enable_warnings --connection node_2 SHOW CREATE EVENT event1;