8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 272baaa commit 734f86dCopy full SHA for 734f86d
src/backend/access/rmgrdesc/heapdesc.c
@@ -125,7 +125,8 @@ heap2_desc(StringInfo buf, XLogReaderState *record)
125
{
126
xl_heap_visible *xlrec = (xl_heap_visible *) rec;
127
128
- appendStringInfo(buf, "cutoff xid %u", xlrec->cutoff_xid);
+ appendStringInfo(buf, "cutoff xid %u flags %d",
129
+ xlrec->cutoff_xid, xlrec->flags);
130
}
131
else if (info == XLOG_HEAP2_MULTI_INSERT)
132
0 commit comments