Commit 734f86d5 authored by Robert Haas's avatar Robert Haas

Add new flags argument for xl_heap_visible to heap2_desc.

Masahiko Sawada
parent 272baaa5
...@@ -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)
{ {
......
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