summaryrefslogtreecommitdiff
path: root/src/btree/bt_misc.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-09-06 14:16:06 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-09-06 14:16:06 +0000
commit5848e9a928e1064a29e437ddf6263aa84a8fa14e (patch)
treea317843b05412b1edda9131a64a73f87d9faf24d /src/btree/bt_misc.c
parent4adc48900b3e8b7e251efd144e0dac71aa2f9ca2 (diff)
downloadmongo-5848e9a928e1064a29e437ddf6263aa84a8fa14e.tar.gz
Add the WT_CELL_ADDR_DEL type to the function that returns a pointer
to a cell's "name".
Diffstat (limited to 'src/btree/bt_misc.c')
-rw-r--r--src/btree/bt_misc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/btree/bt_misc.c b/src/btree/bt_misc.c
index 3fc76a51018..e3c3ff446e9 100644
--- a/src/btree/bt_misc.c
+++ b/src/btree/bt_misc.c
@@ -47,6 +47,8 @@ __wt_cell_type_string(uint8_t type)
switch (type) {
case WT_CELL_ADDR:
return ("address");
+ case WT_CELL_ADDR_DEL:
+ return ("address/del");
case WT_CELL_ADDR_LNO:
return ("address/lno");
case WT_CELL_DEL: