aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-03-08 13:28:22 -0500
committerRobert Haas <rhaas@postgresql.org>2016-03-08 13:28:22 -0500
commit734f86d50dccc91fb68a99339a22a1bcb87f9cea (patch)
treee96e26c983619617dd23179de3025f362730d3ed
parent272baaa538f7a3186ac0c03764a8af9c0f5c00ac (diff)
downloadpostgresql-734f86d50dccc91fb68a99339a22a1bcb87f9cea.tar.gz
postgresql-734f86d50dccc91fb68a99339a22a1bcb87f9cea.zip
Add new flags argument for xl_heap_visible to heap2_desc.
Masahiko Sawada
-rw-r--r--src/backend/access/rmgrdesc/heapdesc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/access/rmgrdesc/heapdesc.c b/src/backend/access/rmgrdesc/heapdesc.c
index a63162ca22c..2b31ea413c3 100644
--- a/src/backend/access/rmgrdesc/heapdesc.c
+++ b/src/backend/access/rmgrdesc/heapdesc.c
@@ -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)
{