1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

after merge fix

This commit is contained in:
unknown
2007-01-10 14:03:36 +04:00
parent f5005095d2
commit 53c9b0d07c

View File

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