Commit 3d927961 authored by Teodor Sigaev's avatar Teodor Sigaev

Handle XLOG_BTREE_META_CLEANUP in btree_desc() and btree_identify()

New WAL record XLOG_BTREE_META_CLEANUP introduced in 857f9c36 has no handling
in btree_desc() and btree_identify().  This patch implements corresponding
handling.

Alexander Korotkov
parent 075aade4
......@@ -96,6 +96,15 @@ btree_desc(StringInfo buf, XLogReaderState *record)
xlrec->node.relNode, xlrec->latestRemovedXid);
break;
}
case XLOG_BTREE_META_CLEANUP:
{
xl_btree_metadata *xlrec = (xl_btree_metadata *) rec;
appendStringInfo(buf, "oldest_btpo_xact %u; last_cleanup_num_heap_tuples: %lf",
xlrec->oldest_btpo_xact,
xlrec->last_cleanup_num_heap_tuples);
break;
}
}
}
......@@ -148,6 +157,9 @@ btree_identify(uint8 info)
case XLOG_BTREE_REUSE_PAGE:
id = "REUSE_PAGE";
break;
case XLOG_BTREE_META_CLEANUP:
id = "META_CLEANUP";
break;
}
return id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment