diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2019-11-11 15:03:46 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2019-11-11 15:03:46 +0200 |
commit | 3da895a736a15413d9873a16ea7ece0dd03ac0f7 (patch) | |
tree | 9318890208ff3353ddd08b6f5adf242dfa4ac07e /storage/innobase/include/page0page.ic | |
parent | 74892bda3a75172f6c81d735de5bc90a4039ae33 (diff) | |
parent | 4fcfdb60e788c6c8cebe35e2e0f8d9595cc9e930 (diff) | |
download | mariadb-git-3da895a736a15413d9873a16ea7ece0dd03ac0f7.tar.gz |
Merge 10.3 into 10.4
Diffstat (limited to 'storage/innobase/include/page0page.ic')
-rw-r--r-- | storage/innobase/include/page0page.ic | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/storage/innobase/include/page0page.ic b/storage/innobase/include/page0page.ic index 3507ea8830c..0992f23a7a7 100644 --- a/storage/innobase/include/page0page.ic +++ b/storage/innobase/include/page0page.ic @@ -911,27 +911,6 @@ page_get_free_space_of_empty( - 2 * PAGE_DIR_SLOT_SIZE)); } -/***********************************************************************//** -Write a 32-bit field in a data dictionary record. */ -UNIV_INLINE -void -page_rec_write_field( -/*=================*/ - rec_t* rec, /*!< in/out: record to update */ - ulint i, /*!< in: index of the field to update */ - ulint val, /*!< in: value to write */ - mtr_t* mtr) /*!< in/out: mini-transaction */ -{ - byte* data; - ulint len; - - data = rec_get_nth_field_old(rec, i, &len); - - ut_ad(len == 4); - - mlog_write_ulint(data, val, MLOG_4BYTES, mtr); -} - /************************************************************//** Each user record on a page, and also the deleted user records in the heap takes its size plus the fraction of the dir cell size / |