summaryrefslogtreecommitdiff
path: root/storage/xtradb/buf
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2017-05-29 13:07:23 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2017-05-29 13:07:23 +0300
commit2cb94aa1b70fa01d9e5c1d8a7625415a0220a3d9 (patch)
tree3c9b7ebb7d7c5f0c13973d7b7ef80fa6a07130bf /storage/xtradb/buf
parentb8405c853fa30002d164d5fe2b4f8ea8979c09b8 (diff)
downloadmariadb-git-2cb94aa1b70fa01d9e5c1d8a7625415a0220a3d9.tar.gz
MDEV-11626 innodb.innodb-change-buffer-recovery fails for xtradb
buf_page_get_gen(): Remove the error log messages about page flushing and eviction when innodb_change_buffering_debug=1 is in effect.
Diffstat (limited to 'storage/xtradb/buf')
-rw-r--r--storage/xtradb/buf/buf0buf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/storage/xtradb/buf/buf0buf.c b/storage/xtradb/buf/buf0buf.c
index e68b0526d42..0b0a00cd1ed 100644
--- a/storage/xtradb/buf/buf0buf.c
+++ b/storage/xtradb/buf/buf0buf.c
@@ -2852,9 +2852,6 @@ wait_until_unfixed:
}
}
//buf_pool_mutex_exit(buf_pool);
- fprintf(stderr,
- "innodb_change_buffering_debug evict %u %u\n",
- (unsigned) space, (unsigned) offset);
return(NULL);
} else if (UNIV_UNLIKELY(buf_block_get_state(block)
@@ -2875,9 +2872,6 @@ wait_until_unfixed:
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
if (buf_flush_page_try(buf_pool, block)) {
- fprintf(stderr,
- "innodb_change_buffering_debug flush %u %u\n",
- (unsigned) space, (unsigned) offset);
guess = block;
goto loop;
}