List:Commits« Previous MessageNext Message »
From:andrey Date:March 25 2008 1:09pm
Subject:bk commit into 5.1 tree (andrey:1.2569)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of andrey.  When andrey does a push these changes
will be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2008-03-25 15:08:56+02:00, andrey@stripped +1 -0
  shut up the compiler - right order of initialization

  sql/set_var.h@stripped, 2008-03-25 15:08:52+02:00, andrey@stripped +2 -2
    shut up the compiler - right order of initialization

diff -Nrup a/sql/set_var.h b/sql/set_var.h
--- a/sql/set_var.h	2008-03-07 14:59:34 +02:00
+++ b/sql/set_var.h	2008-03-25 15:08:52 +02:00
@@ -73,8 +73,8 @@ public:
   bool no_support_one_shot;
   sys_var(const char *name_arg, sys_after_update_func func= NULL,
           Binlog_status_enum binlog_status_arg= NOT_IN_BINLOG)
-    :name(name_arg), after_update(func), binlog_status(binlog_status_arg)
-    , no_support_one_shot(1)
+    :name(name_arg), after_update(func), no_support_one_shot(1)
+    , binlog_status(binlog_status_arg)
   {}
   virtual ~sys_var() {}
   void chain_sys_var(sys_var_chain *chain_arg)
Thread
bk commit into 5.1 tree (andrey:1.2569)andrey25 Mar