summaryrefslogtreecommitdiff
path: root/src/backend/access/rmgrdesc/hashdesc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/access/rmgrdesc/hashdesc.c')
-rw-r--r--src/backend/access/rmgrdesc/hashdesc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/rmgrdesc/hashdesc.c b/src/backend/access/rmgrdesc/hashdesc.c
index b6810a93207..98c4b30b3e9 100644
--- a/src/backend/access/rmgrdesc/hashdesc.c
+++ b/src/backend/access/rmgrdesc/hashdesc.c
@@ -113,9 +113,10 @@ hash_desc(StringInfo buf, XLogReaderState *record)
{
xl_hash_vacuum_one_page *xlrec = (xl_hash_vacuum_one_page *) rec;
- appendStringInfo(buf, "ntuples %d, snapshotConflictHorizon %u",
+ appendStringInfo(buf, "ntuples %d, snapshotConflictHorizon %u, isCatalogRel %c",
xlrec->ntuples,
- xlrec->snapshotConflictHorizon);
+ xlrec->snapshotConflictHorizon,
+ xlrec->isCatalogRel ? 'T' : 'F');
break;
}
}