1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

After-merge fixup.

- THD::tmp_table_used removed, THD::thread_specific_used used instead.
This commit is contained in:
unknown
2007-08-01 19:20:25 +05:00
parent d4ba395aa6
commit be4cfe504e
7 changed files with 9 additions and 11 deletions

View File

@@ -1656,7 +1656,7 @@ int mysql_rm_table_part2(THD *thd, TABLE_LIST *tables, bool if_exists,
on the table name.
*/
pthread_mutex_unlock(&LOCK_open);
thd->tmp_table_used= tmp_table_deleted;
thd->thread_specific_used|= tmp_table_deleted;
error= 0;
if (wrong_tables.length())
{
@@ -3408,7 +3408,7 @@ bool mysql_create_table_no_lock(THD *thd,
(void) rm_temporary_table(create_info->db_type, path);
goto unlock_and_end;
}
thd->tmp_table_used= 1;
thd->thread_specific_used= TRUE;
}
/*