Commit 6d0419f6 authored by unknown's avatar unknown

Move the filling of the table_name column above the initialization,

so that the init function has access to the name.

parent 3e09e4ad
...@@ -5904,6 +5904,7 @@ int initialize_schema_table(st_plugin_int *plugin) ...@@ -5904,6 +5904,7 @@ int initialize_schema_table(st_plugin_int *plugin)
schema_table->old_format= make_old_format; schema_table->old_format= make_old_format;
schema_table->idx_field1= -1, schema_table->idx_field1= -1,
schema_table->idx_field2= -1; schema_table->idx_field2= -1;
schema_table->table_name= plugin->name.str;
if (plugin->plugin->init(schema_table)) if (plugin->plugin->init(schema_table))
{ {
...@@ -5911,7 +5912,6 @@ int initialize_schema_table(st_plugin_int *plugin) ...@@ -5911,7 +5912,6 @@ int initialize_schema_table(st_plugin_int *plugin)
plugin->name.str); plugin->name.str);
goto err; goto err;
} }
schema_table->table_name= plugin->name.str;
} }
DBUG_RETURN(0); DBUG_RETURN(0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment