From 68db008c0e3655b95c0da482be1145894329409b Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 19 Jun 2007 11:25:19 +0200 Subject: [PATCH] turn off binlogging of the updates during wait for not_readonly --- mysql-test/include/ndb_not_readonly.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mysql-test/include/ndb_not_readonly.inc b/mysql-test/include/ndb_not_readonly.inc index adb6c01329b..37453e40233 100644 --- a/mysql-test/include/ndb_not_readonly.inc +++ b/mysql-test/include/ndb_not_readonly.inc @@ -3,6 +3,8 @@ # wait for server to connect properly to cluster # --error 0,ER_NO_SUCH_TABLE,ER_OPEN_AS_READONLY,ER_GET_ERRMSG,ER_KEY_NOT_FOUND +set @saved_log = @@sql_log_bin; +set sql_log_bin = 0; delete from mysql.ndb_apply_status where server_id=0; let $mysql_errno= 1; let $counter= 600; @@ -22,6 +24,7 @@ while ($mysql_errno) } } delete from mysql.ndb_apply_status where server_id=0; +set sql_log_bin = @saved_log; # # connected #