mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -1039,6 +1039,12 @@ retry:
|
||||
if (res->table && (res->table == table->table))
|
||||
continue;
|
||||
|
||||
/* Skip if table is tmp table */
|
||||
if (check_flag & CHECK_DUP_SKIP_TEMP_TABLE &&
|
||||
res->table && res->table->s->tmp_table != NO_TMP_TABLE)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (check_flag & CHECK_DUP_FOR_CREATE)
|
||||
DBUG_RETURN(res);
|
||||
|
||||
|
Reference in New Issue
Block a user