We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97c19e6 commit 2fe69caCopy full SHA for 2fe69ca
src/backend/access/rmgrdesc/gindesc.c
@@ -68,7 +68,7 @@ gin_desc(StringInfo buf, uint8 xl_info, char *rec)
68
(((ginxlogInsertEntry *) payload)->isDelete) ? 'T' : 'F');
69
else if (xlrec->flags & GIN_INSERT_ISLEAF)
70
appendStringInfo(buf, " nitem: %u",
71
- (((ginxlogInsertDataLeaf *) payload)->nitem) ? 'T' : 'F');
+ (((ginxlogInsertDataLeaf *) payload)->nitem));
72
else
73
appendStringInfo(buf, " pitem: %u-%u/%u",
74
PostingItemGetBlockNumber((PostingItem *) payload),
0 commit comments