Skip to content
Snippets Groups Projects
Commit 734f86d5 authored by Robert Haas's avatar Robert Haas
Browse files

Add new flags argument for xl_heap_visible to heap2_desc.

Masahiko Sawada
parent 272baaa5
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,8 @@ heap2_desc(StringInfo buf, XLogReaderState *record) ...@@ -125,7 +125,8 @@ heap2_desc(StringInfo buf, XLogReaderState *record)
{ {
xl_heap_visible *xlrec = (xl_heap_visible *) rec; xl_heap_visible *xlrec = (xl_heap_visible *) rec;
appendStringInfo(buf, "cutoff xid %u", xlrec->cutoff_xid); appendStringInfo(buf, "cutoff xid %u flags %d",
xlrec->cutoff_xid, xlrec->flags);
} }
else if (info == XLOG_HEAP2_MULTI_INSERT) else if (info == XLOG_HEAP2_MULTI_INSERT)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment