Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 734f86d

Browse files
committed
Add new flags argument for xl_heap_visible to heap2_desc.
Masahiko Sawada
1 parent 272baaa commit 734f86d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/access/rmgrdesc/heapdesc.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ heap2_desc(StringInfo buf, XLogReaderState *record)
125125
{
126126
xl_heap_visible *xlrec = (xl_heap_visible *) rec;
127127

128-
appendStringInfo(buf, "cutoff xid %u", xlrec->cutoff_xid);
128+
appendStringInfo(buf, "cutoff xid %u flags %d",
129+
xlrec->cutoff_xid, xlrec->flags);
129130
}
130131
else if (info == XLOG_HEAP2_MULTI_INSERT)
131132
{

0 commit comments

Comments
 (0)