diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2019-07-12 08:23:34 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2019-07-12 08:23:34 +0300 |
commit | a8ee9a0835bd902b988a37a8c8c1867e47a6eca1 (patch) | |
tree | 880d1e994f452b2963331de4f1c355d0c4241d7c | |
parent | 4a21c866a84499e6920050027a590cc3f30733d3 (diff) | |
download | mariadb-git-bb-10.1-MDEV-18778.tar.gz |
Fix typo.bb-10.1-MDEV-18778
-rw-r--r-- | sql/tztime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/tztime.cc b/sql/tztime.cc index 6715a2ca4a1..c32dd14fa52 100644 --- a/sql/tztime.cc +++ b/sql/tztime.cc @@ -2706,7 +2706,7 @@ main(int argc, char **argv) time zones to nodes in Galera cluster. */ printf("set @prep1=if((select count(*) from information_schema.global_variables where variable_name='wsrep_on'), 'SET SESSION SQL_LOG_BIN=?, WSREP_ON=OFF;', 'do ?');\n" "prepare set_wsrep_write_binlog from @prep1;\n" - "set @toggle=1; execute set_wsrep_write_binlog using @toggle;\n"); + "set @toggle=0; execute set_wsrep_write_binlog using @toggle;\n"); else // Replicate MyISAM DDL for this session, cf. lp:1161432 printf("set @prep=if((select count(*) from information_schema.global_variables where variable_name='wsrep_on'), 'SET GLOBAL wsrep_replicate_myisam=?', 'do ?');\n" |