after merge fix

parent 9da22c73
...@@ -5167,6 +5167,7 @@ my_bool mysql_rm_tmp_tables(void) ...@@ -5167,6 +5167,7 @@ my_bool mysql_rm_tmp_tables(void)
if (!(thd= new THD)) if (!(thd= new THD))
DBUG_RETURN(1); DBUG_RETURN(1);
thd->thread_stack= (char*) &thd;
thd->store_globals(); thd->store_globals();
for (i=0; i<=mysql_tmpdir_list.max; i++) for (i=0; i<=mysql_tmpdir_list.max; i++)
...@@ -5196,7 +5197,7 @@ my_bool mysql_rm_tmp_tables(void) ...@@ -5196,7 +5197,7 @@ my_bool mysql_rm_tmp_tables(void)
if (!bcmp(reg_ext, ext, ext_len)) if (!bcmp(reg_ext, ext, ext_len))
{ {
TABLE tmp_table; TABLE tmp_table;
if (!openfrm(filePath, "tmp_table", (uint) 0, if (!openfrm(thd, filePath, "tmp_table", (uint) 0,
READ_KEYINFO | COMPUTE_TYPES | EXTRA_RECORD, READ_KEYINFO | COMPUTE_TYPES | EXTRA_RECORD,
0, &tmp_table)) 0, &tmp_table))
{ {
......
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