summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarko@hundin.mysql.fi <>2004-05-26 19:41:14 +0300
committermarko@hundin.mysql.fi <>2004-05-26 19:41:14 +0300
commit9e983e629ed17adbd7753aa8196a2e172d3777c4 (patch)
tree1273fc1c4dd9950faf1ebb5de8e9ffd319c9ee02
parent78f58ff38494c6483fd63e9f9d8824b34ebdbc44 (diff)
downloadmariadb-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.c2
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));