Skip to content

Commit ef99edf

Browse files
committed
MDEV-8103: Missing DBUG_RETURN in open_table_uncached()
1 parent 9088f26 commit ef99edf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/sql_base.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5640,7 +5640,7 @@ TABLE *open_table_uncached(THD *thd, handlerton *hton,
56405640
/* Temporary tables are not safe for parallel replication. */
56415641
if (thd->rgi_slave && thd->rgi_slave->is_parallel_exec &&
56425642
thd->wait_for_prior_commit())
5643-
return NULL;
5643+
DBUG_RETURN(NULL);
56445644
}
56455645

56465646
/* Create the cache_key for temporary tables */

0 commit comments

Comments
 (0)