mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
Add new flags argument for xl_heap_visible to heap2_desc.
Masahiko Sawada
This commit is contained in:
@ -125,7 +125,8 @@ heap2_desc(StringInfo buf, XLogReaderState *record)
|
|||||||
{
|
{
|
||||||
xl_heap_visible *xlrec = (xl_heap_visible *) rec;
|
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)
|
else if (info == XLOG_HEAP2_MULTI_INSERT)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user