summaryrefslogtreecommitdiff
path: root/storage/innobase/include/buf0flu.h
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2018-03-09 13:43:32 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2018-03-10 11:54:34 +0200
commit54765aaa4db8dacb5cca81d4628335c570e7798a (patch)
treefb9742ad39fbd36bd7d8cb8ff3ac7f70c337c661 /storage/innobase/include/buf0flu.h
parent4fa18d52b58e0b5b2cc268cdfb273935bd7de76b (diff)
downloadmariadb-git-54765aaa4db8dacb5cca81d4628335c570e7798a.tar.gz
MDEV-15524 Do not disable page checksums for temporary tables
buf_flush_init_for_writing(): Remove the parameter skip_checksum.
Diffstat (limited to 'storage/innobase/include/buf0flu.h')
-rw-r--r--storage/innobase/include/buf0flu.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/storage/innobase/include/buf0flu.h b/storage/innobase/include/buf0flu.h
index d77a7072cf6..ccf1d991b09 100644
--- a/storage/innobase/include/buf0flu.h
+++ b/storage/innobase/include/buf0flu.h
@@ -1,7 +1,7 @@
/*****************************************************************************
Copyright (c) 1995, 2016, Oracle and/or its affiliates. All Rights Reserved.
-Copyright (c) 2014, 2017, MariaDB Corporation.
+Copyright (c) 2014, 2018, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
@@ -80,15 +80,13 @@ buf_flush_write_complete(
@param[in] block buffer block; NULL if bypassing the buffer pool
@param[in,out] page page frame
@param[in,out] page_zip_ compressed page, or NULL if uncompressed
-@param[in] newest_lsn newest modification LSN to the page
-@param[in] skip_checksum whether to disable the page checksum */
+@param[in] newest_lsn newest modification LSN to the page */
void
buf_flush_init_for_writing(
const buf_block_t* block,
byte* page,
void* page_zip_,
- lsn_t newest_lsn,
- bool skip_checksum = false);
+ lsn_t newest_lsn);
# if defined UNIV_DEBUG || defined UNIV_IBUF_DEBUG
/********************************************************************//**