Commit db8344aa authored by mats@mysql.com's avatar mats@mysql.com

Removing unnecessary assertion.

parent 616a47cc
...@@ -2409,7 +2409,6 @@ void abort_locked_tables(THD *thd,const char *db, const char *table_name) ...@@ -2409,7 +2409,6 @@ void abort_locked_tables(THD *thd,const char *db, const char *table_name)
share is non-NULL share is non-NULL
The LOCK_open mutex is locked The LOCK_open mutex is locked
The share->mutex is locked
POST-CONDITION(S) POST-CONDITION(S)
...@@ -2429,7 +2428,6 @@ void assign_new_table_id(TABLE_SHARE *share) ...@@ -2429,7 +2428,6 @@ void assign_new_table_id(TABLE_SHARE *share)
/* Preconditions */ /* Preconditions */
DBUG_ASSERT(share != NULL); DBUG_ASSERT(share != NULL);
safe_mutex_assert_owner(&LOCK_open); safe_mutex_assert_owner(&LOCK_open);
safe_mutex_assert_owner(&share->mutex);
ulong tid= ++last_table_id; /* get next id */ ulong tid= ++last_table_id; /* get next id */
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment