diff options
author | heikki@hundin.mysql.fi <> | 2003-07-25 22:26:39 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2003-07-25 22:26:39 +0300 |
commit | c1b62170a7afd62fc20b9d22da5592868abf255f (patch) | |
tree | d9143381b78b15cc9593f7a566466647ab3203f1 /innobase/include/log0recv.h | |
parent | 05fb8176228056af3a48206c9d789722a00052b0 (diff) | |
download | mariadb-git-c1b62170a7afd62fc20b9d22da5592868abf255f.tar.gz |
srv0srv.c, os0file.c, log0recv.h, log0log.h, fil0fil.h, fsp0fsp.c, fil0fil.c:
Merge
trx0trx.c:
Print more info about a trx in SHOW INNODB status; try to find the bug reported by Plaxo
buf0buf.c:
Check that page log sequence numbers are not in the future
log0recv.c, log0log.c:
Fixed a bug: if you used big BLOBs, and your log files were relatively small, InnoDB could in a big BLOB operation temporarily write over the log produced AFTER the latest checkpoint. If InnoDB would crash at that moment, then the crash recovery would fail, because InnoDB would not be able to scan the log even up to the latest checkpoint. Starting from this version, InnoDB tries to ensure the latest checkpoint is young enough. If that is not possible, InnoDB prints a warning to the .err log
Diffstat (limited to 'innobase/include/log0recv.h')
-rw-r--r-- | innobase/include/log0recv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/innobase/include/log0recv.h b/innobase/include/log0recv.h index 7418e4abf1b..e5a5bc05563 100644 --- a/innobase/include/log0recv.h +++ b/innobase/include/log0recv.h @@ -333,6 +333,8 @@ extern ibool recv_recovery_on; extern ibool recv_no_ibuf_operations; extern ibool recv_needed_recovery; +extern ibool recv_lsn_checks_on; + extern ibool recv_is_making_a_backup; extern ulint recv_max_parsed_page_no; |