diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2019-05-03 20:14:09 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2019-05-03 20:14:09 +0300 |
commit | b6f4cccd191f7d98306db9ebc6e8667ec9e1ec79 (patch) | |
tree | f530d85bd1ca8b3cb45f6b6d2b0e1e2ac6b24451 /storage/innobase/include/log0log.h | |
parent | 779fb636daf4c127dbb90f75bab004ac1bbe12df (diff) | |
parent | ce195987c3c995470992f16ca7a985796d6b65a6 (diff) | |
download | mariadb-git-b6f4cccd191f7d98306db9ebc6e8667ec9e1ec79.tar.gz |
Merge 10.2 into 10.3
Diffstat (limited to 'storage/innobase/include/log0log.h')
-rw-r--r-- | storage/innobase/include/log0log.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/storage/innobase/include/log0log.h b/storage/innobase/include/log0log.h index 3ea211ed545..16399edad50 100644 --- a/storage/innobase/include/log0log.h +++ b/storage/innobase/include/log0log.h @@ -193,23 +193,13 @@ blocks from the buffer pool: it only checks what is lsn of the oldest modification in the pool, and writes information about the lsn in log files. Use log_make_checkpoint_at() to flush also the pool. @param[in] sync whether to wait for the write to complete -@param[in] write_always force a write even if no log -has been generated since the latest checkpoint @return true if success, false if a checkpoint write was already running */ -bool -log_checkpoint( - bool sync, - bool write_always); +bool log_checkpoint(bool sync); /** Make a checkpoint at or after a specified LSN. @param[in] lsn the log sequence number, or LSN_MAX -for the latest LSN -@param[in] write_always force a write even if no log -has been generated since the latest checkpoint */ -void -log_make_checkpoint_at( - lsn_t lsn, - bool write_always); +for the latest LSN */ +void log_make_checkpoint_at(lsn_t lsn); /****************************************************************//** Makes a checkpoint at the latest lsn and writes it to first page of each |