From 3fce4dc28a07c9b814e9805037d9ec3dbfebd6ff Mon Sep 17 00:00:00 2001 From: marko <> Date: Mon, 5 Nov 2007 10:17:38 +0000 Subject: [PATCH] branches/zip: buf_page_hash_get(): Fix a debug assertion that was accidentally negated in r2043. --- include/buf0buf.ic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/buf0buf.ic b/include/buf0buf.ic index 752a40676b9..ed228a09065 100644 --- a/include/buf0buf.ic +++ b/include/buf0buf.ic @@ -900,7 +900,7 @@ buf_page_hash_get( if (bpage) { ut_a(buf_page_in_file(bpage)); ut_ad(bpage->in_page_hash); - ut_ad(bpage->in_zip_hash); + ut_ad(!bpage->in_zip_hash); UNIV_MEM_ASSERT_RW(bpage, sizeof *bpage); }