1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

MDEV-8103: Missing DBUG_RETURN in open_table_uncached()

This commit is contained in:
Kristian Nielsen
2015-05-06 12:24:15 +02:00
parent 9088f26f20
commit ef99edf1a8

View File

@@ -5640,7 +5640,7 @@ TABLE *open_table_uncached(THD *thd, handlerton *hton,
/* Temporary tables are not safe for parallel replication. */
if (thd->rgi_slave && thd->rgi_slave->is_parallel_exec &&
thd->wait_for_prior_commit())
return NULL;
DBUG_RETURN(NULL);
}
/* Create the cache_key for temporary tables */