Commit a3c79ebc authored by marko's avatar marko

branches/zip: buf_page_hash_get(): Fix a debug assertion that was

accidentally negated in r2043.
parent 89f0e34f
...@@ -900,7 +900,7 @@ buf_page_hash_get( ...@@ -900,7 +900,7 @@ buf_page_hash_get(
if (bpage) { if (bpage) {
ut_a(buf_page_in_file(bpage)); ut_a(buf_page_in_file(bpage));
ut_ad(bpage->in_page_hash); 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); UNIV_MEM_ASSERT_RW(bpage, sizeof *bpage);
} }
......
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