Commit 1e24cdc8 authored by Sergei Golubchik's avatar Sergei Golubchik

fix for xtradb to compile on windows

parent dfc45221
...@@ -4065,14 +4065,14 @@ retry_mutex: ...@@ -4065,14 +4065,14 @@ retry_mutex:
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
block_mutex = buf_page_get_mutex_enter(bpage); block_mutex = buf_page_get_mutex_enter(bpage);
ut_a(block_mutex); ut_a(block_mutex);
if (UNIV_UNLIKELY(io_type == BUF_IO_WRITE if (io_type == BUF_IO_WRITE
&& ( && (
#if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG #if defined UNIV_DEBUG || defined UNIV_BUF_DEBUG
buf_page_get_state(bpage) == BUF_BLOCK_ZIP_DIRTY buf_page_get_state(bpage) == BUF_BLOCK_ZIP_DIRTY
|| ||
#endif #endif
buf_page_get_flush_type(bpage) == BUF_FLUSH_LRU) buf_page_get_flush_type(bpage) == BUF_FLUSH_LRU)
&& !have_LRU_mutex)) { && !have_LRU_mutex) {
mutex_exit(block_mutex); mutex_exit(block_mutex);
have_LRU_mutex = TRUE; have_LRU_mutex = TRUE;
......
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