Add new flags argument for xl_heap_visible to heap2_desc.

Masahiko Sawada
This commit is contained in:
Robert Haas 2016-03-08 13:28:22 -05:00
parent 272baaa538
commit 734f86d50d
1 changed files with 2 additions and 1 deletions

View File

@ -125,7 +125,8 @@ heap2_desc(StringInfo buf, XLogReaderState *record)
{
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)
{