]> granicus.if.org Git - postgresql/commitdiff
Add new flags argument for xl_heap_visible to heap2_desc.
authorRobert Haas <rhaas@postgresql.org>
Tue, 8 Mar 2016 18:28:22 +0000 (13:28 -0500)
committerRobert Haas <rhaas@postgresql.org>
Tue, 8 Mar 2016 18:28:22 +0000 (13:28 -0500)
Masahiko Sawada

src/backend/access/rmgrdesc/heapdesc.c

index a63162ca22c6a5fb73adef3dd3cca845cbb1f608..2b31ea413c31d97566fbb8093287754ab79851e5 100644 (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)
        {