summaryrefslogtreecommitdiff
path: root/storage/innobase/include/page0page.ic
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-11-11 14:56:51 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2019-11-11 14:56:51 +0200
commit4fcfdb60e788c6c8cebe35e2e0f8d9595cc9e930 (patch)
tree01fdb93141731c2736575712bf4f442d9c449f1a /storage/innobase/include/page0page.ic
parentc4ee8a306bf017116616098019bee79fd4d585e9 (diff)
parent142442d571dd86c630019ece82e36dc73e1e5f1b (diff)
downloadmariadb-git-4fcfdb60e788c6c8cebe35e2e0f8d9595cc9e930.tar.gz
Merge 10.2 into 10.3
Diffstat (limited to 'storage/innobase/include/page0page.ic')
-rw-r--r--storage/innobase/include/page0page.ic21
1 files changed, 0 insertions, 21 deletions
diff --git a/storage/innobase/include/page0page.ic b/storage/innobase/include/page0page.ic
index 9785b451a06..e5368938531 100644
--- a/storage/innobase/include/page0page.ic
+++ b/storage/innobase/include/page0page.ic
@@ -919,27 +919,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 /