List:Commits« Previous MessageNext Message »
From:Chad MILLER Date:July 18 2007 4:27pm
Subject:bk commit into 5.1 tree (cmiller:1.2568)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of cmiller. When cmiller 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, 2007-07-18 12:27:54-04:00, cmiller@stripped +1 -0
  Move the filling of the table_name column above the initialization,
  so that the init function has access to the name.

  sql/sql_show.cc@stripped, 2007-07-18 12:27:52-04:00, cmiller@stripped +1 -1
    Move the filling of the table_name column above the initialization,
    so that the init function has access to the name.

diff -Nrup a/sql/sql_show.cc b/sql/sql_show.cc
--- a/sql/sql_show.cc	2007-07-16 17:03:56 -04:00
+++ b/sql/sql_show.cc	2007-07-18 12:27:52 -04:00
@@ -5904,6 +5904,7 @@ int initialize_schema_table(st_plugin_in
     schema_table->old_format= make_old_format;
     schema_table->idx_field1= -1, 
     schema_table->idx_field2= -1; 
+    schema_table->table_name= plugin->name.str;
 
     if (plugin->plugin->init(schema_table))
     {
@@ -5911,7 +5912,6 @@ int initialize_schema_table(st_plugin_in
                       plugin->name.str);
       goto err;
     }
-    schema_table->table_name= plugin->name.str;
   }
 
   DBUG_RETURN(0);
Thread
bk commit into 5.1 tree (cmiller:1.2568)Chad MILLER18 Jul