Commit 844a8098 authored by Vasil Dimov's avatar Vasil Dimov

Fix typo, should be UNIV_SYNC_DEBUG.

parent da98776b
...@@ -241,9 +241,9 @@ trx_sys_create_doublewrite_buf(void) ...@@ -241,9 +241,9 @@ trx_sys_create_doublewrite_buf(void)
{ {
buf_block_t* block; buf_block_t* block;
buf_block_t* block2; buf_block_t* block2;
#ifdef UNIV_DEBUG #ifdef UNIV_SYNC_DEBUG
buf_block_t* new_block; buf_block_t* new_block;
#endif /* UNIV_DEBUG */ #endif /* UNIV_SYNC_DEBUG */
byte* doublewrite; byte* doublewrite;
byte* fseg_header; byte* fseg_header;
ulint page_no; ulint page_no;
...@@ -346,9 +346,9 @@ start_again: ...@@ -346,9 +346,9 @@ start_again:
the page position in the tablespace, then the page the page position in the tablespace, then the page
has not been written to in doublewrite. */ has not been written to in doublewrite. */
#ifdef UNIV_DEBUG #ifdef UNIV_SYNC_DEBUG
new_block = new_block =
#endif /* UNIV_DEBUG */ #endif /* UNIV_SYNC_DEBUG */
buf_page_get(TRX_SYS_SPACE, 0, page_no, buf_page_get(TRX_SYS_SPACE, 0, page_no,
RW_X_LATCH, &mtr); RW_X_LATCH, &mtr);
buf_block_dbg_add_level(new_block, buf_block_dbg_add_level(new_block,
......
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