summaryrefslogtreecommitdiff
path: root/src/include/cell.i
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/cell.i')
-rw-r--r--src/include/cell.i10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/include/cell.i b/src/include/cell.i
index 00a1e4d0e5b..071206c4b49 100644
--- a/src/include/cell.i
+++ b/src/include/cell.i
@@ -797,8 +797,9 @@ __cell_data_ref(WT_SESSION_IMPL *session,
}
/*
- * __wt_dsk_cell_data_ref, __wt_page_cell_data_ref --
- * Set a buffer to reference the data from an unpacked cell, two flavors.
+ * __wt_dsk_cell_data_ref --
+ * Set a buffer to reference the data from an unpacked cell.
+ *
* There are two versions because of WT_CELL_VALUE_OVFL_RM type cells. When an
* overflow item is deleted, its backing blocks are removed; if there are still
* running transactions that might need to see the overflow item, we cache a
@@ -816,6 +817,11 @@ __wt_dsk_cell_data_ref(WT_SESSION_IMPL *session,
__wt_cell_type_raw(unpack->cell) != WT_CELL_VALUE_OVFL_RM);
return (__cell_data_ref(session, NULL, page_type, unpack, store));
}
+
+/*
+ * __wt_page_cell_data_ref --
+ * Set a buffer to reference the data from an unpacked cell.
+ */
static inline int
__wt_page_cell_data_ref(WT_SESSION_IMPL *session,
WT_PAGE *page, WT_CELL_UNPACK *unpack, WT_ITEM *store)