diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-10-06 10:50:12 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-10-06 10:50:12 +0300 |
commit | fed70100e762eb88a0f1c8bb57715e9530b76666 (patch) | |
tree | 8caa71f3ebe08127eb02277f525cc00462b3e0a0 /innobase | |
parent | 8e31a241905262fe438c0354e948ac25121f9ee3 (diff) | |
download | mariadb-git-fed70100e762eb88a0f1c8bb57715e9530b76666.tar.gz |
row0mysql.c:
Remove unintentional changes in previous push
innobase/row/row0mysql.c:
Remove unintentional changes in previous push
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/row/row0mysql.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/innobase/row/row0mysql.c b/innobase/row/row0mysql.c index 03e938baf25..468404268f4 100644 --- a/innobase/row/row0mysql.c +++ b/innobase/row/row0mysql.c @@ -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 */ |