diff options
author | marko@hundin.mysql.fi <> | 2004-05-26 19:41:14 +0300 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2004-05-26 19:41:14 +0300 |
commit | 9e983e629ed17adbd7753aa8196a2e172d3777c4 (patch) | |
tree | 1273fc1c4dd9950faf1ebb5de8e9ffd319c9ee02 | |
parent | 78f58ff38494c6483fd63e9f9d8824b34ebdbc44 (diff) | |
download | mariadb-git-9e983e629ed17adbd7753aa8196a2e172d3777c4.tar.gz |
InnoDB fixup: remove debug assertion that causes compile error
when UNIV_DEBUG is defined (introduced in ChangeSet@1.1850)
-rw-r--r-- | innobase/que/que0que.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/innobase/que/que0que.c b/innobase/que/que0que.c index c53a31adc6f..0a2e607807a 100644 --- a/innobase/que/que0que.c +++ b/innobase/que/que0que.c @@ -190,8 +190,6 @@ que_thr_end_wait( ut_ad(mutex_own(&kernel_mutex)); #endif /* UNIV_SYNC_DEBUG */ ut_ad(thr); - ut_ad(next_thr); - ut_ad(*next_thr == NULL); ut_ad((thr->state == QUE_THR_LOCK_WAIT) || (thr->state == QUE_THR_PROCEDURE_WAIT) || (thr->state == QUE_THR_SIG_REPLY_WAIT)); |