projects
/
users
/
gsingh
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
272baaa
)
Add new flags argument for xl_heap_visible to heap2_desc.
author
Robert Haas
<rhaas@postgresql.org>
Tue, 8 Mar 2016 18:28:22 +0000
(13:28 -0500)
committer
Robert Haas
<rhaas@postgresql.org>
Tue, 8 Mar 2016 18:28:22 +0000
(13:28 -0500)
Masahiko Sawada
src/backend/access/rmgrdesc/heapdesc.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/access/rmgrdesc/heapdesc.c
b/src/backend/access/rmgrdesc/heapdesc.c
index a63162ca22c6a5fb73adef3dd3cca845cbb1f608..2b31ea413c31d97566fbb8093287754ab79851e5 100644
(file)
--- 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)
{