mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
row0mysql.c:
Remove unintentional changes in previous push
This commit is contained in:
parent
da57c25159
commit
216c0a90cd
1 changed files with 2 additions and 6 deletions
|
@ -1217,9 +1217,7 @@ row_mysql_lock_data_dictionary(
|
|||
/*===========================*/
|
||||
trx_t* trx) /* in: transaction */
|
||||
{
|
||||
ut_ad(trx->dict_operation_lock_mode == 0); /* This is allowed to fail
|
||||
in a rename #sql... to
|
||||
rsql... */
|
||||
ut_a(trx->dict_operation_lock_mode == 0);
|
||||
|
||||
/* Serialize data dictionary operations with dictionary mutex:
|
||||
no deadlocks or lock waits can occur then in these operations */
|
||||
|
@ -1238,9 +1236,7 @@ row_mysql_unlock_data_dictionary(
|
|||
/*=============================*/
|
||||
trx_t* trx) /* in: transaction */
|
||||
{
|
||||
ut_ad(trx->dict_operation_lock_mode == RW_X_LATCH); /* This is allowed
|
||||
to fail in a rename #sql... to
|
||||
rsql... */
|
||||
ut_a(trx->dict_operation_lock_mode == RW_X_LATCH);
|
||||
|
||||
/* Serialize data dictionary operations with dictionary mutex:
|
||||
no deadlocks can occur then in these operations */
|
||||
|
|
Loading…
Add table
Reference in a new issue