diff options
author | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 15:58:26 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 15:58:26 +0400 |
commit | b5749212c12094fb2fea6fa867071c070f15afcc (patch) | |
tree | 5121c2287f0e80596aa3ab0d34923ed389c8e041 /storage | |
parent | 4e26411a4a17fc904f01b6f9ac45674e0b62a316 (diff) | |
download | mariadb-git-b5749212c12094fb2fea6fa867071c070f15afcc.tar.gz |
Applying InnoDB snapshot
Detailed revision comments:
r6728 | marko | 2010-02-17 18:54:04 +0200 (Wed, 17 Feb 2010) | 3 lines
branches/zip: Remove UNIV_BASIC_LOG_DEBUG.
This fixes the FILE_FLUSH_LSN printouts mentioned in Issue #341.
Suggested by Heikki.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innodb_plugin/fsp/fsp0fsp.c | 3 | ||||
-rw-r--r-- | storage/innodb_plugin/include/univ.i | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/storage/innodb_plugin/fsp/fsp0fsp.c b/storage/innodb_plugin/fsp/fsp0fsp.c index 88f8da6981e..b5329bb9ebe 100644 --- a/storage/innodb_plugin/fsp/fsp0fsp.c +++ b/storage/innodb_plugin/fsp/fsp0fsp.c @@ -869,9 +869,6 @@ fsp_init_file_page_low( return; } -#ifdef UNIV_BASIC_LOG_DEBUG - memset(page, 0xff, UNIV_PAGE_SIZE); -#endif UNIV_MEM_INVALID(page, UNIV_PAGE_SIZE); mach_write_to_4(page + FIL_PAGE_OFFSET, buf_block_get_page_no(block)); memset(page + FIL_PAGE_LSN, 0, 8); diff --git a/storage/innodb_plugin/include/univ.i b/storage/innodb_plugin/include/univ.i index a083620ab6d..4078167a66a 100644 --- a/storage/innodb_plugin/include/univ.i +++ b/storage/innodb_plugin/include/univ.i @@ -229,11 +229,6 @@ by one. */ /* the above option prevents forcing of log to disk at a buffer page write: it should be tested with this option off; also some ibuf tests are suppressed */ -/* -#define UNIV_BASIC_LOG_DEBUG -*/ - /* the above option enables basic recovery debugging: - new allocated file pages are reset */ /* Linkage specifier for non-static InnoDB symbols (variables and functions) that are only referenced from within InnoDB, not from MySQL */ |