You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue:
For two threads T1 and T2 where
T1 : DROP TABLE t1;
T2 : CREATE TABLESPACE encrypt_ts ADD DATAFILE 'encrypt_ts.ibd' ENCRYPTION='Y';
Following is a possible deadlock scenario where :
T1 : Holding (mutex on master_key_id_mutex) : Requesting (dict_sys->mutex)
T2 : Holding (dict_sys->mutex) : Requesting (mutex on master_key_id_mutex)
Fix:
In replay_delete_space_log(), take mutex on master_key_id_mutex, after releasing
dict_sys->mutex to make sure there is no wait cycle.
RB : 20745
Reviewed by : Annamalai Gurusami <annamalai.gurusami@oracle.com>
0 commit comments