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

Commit 2fe69ca

Browse files
committed
Another gin_desc fix.
The number of items inserted was incorrectly printed as if it was a boolean.
1 parent 97c19e6 commit 2fe69ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/access/rmgrdesc/gindesc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ gin_desc(StringInfo buf, uint8 xl_info, char *rec)
6868
(((ginxlogInsertEntry *) payload)->isDelete) ? 'T' : 'F');
6969
else if (xlrec->flags & GIN_INSERT_ISLEAF)
7070
appendStringInfo(buf, " nitem: %u",
71-
(((ginxlogInsertDataLeaf *) payload)->nitem) ? 'T' : 'F');
71+
(((ginxlogInsertDataLeaf *) payload)->nitem));
7272
else
7373
appendStringInfo(buf, " pitem: %u-%u/%u",
7474
PostingItemGetBlockNumber((PostingItem *) payload),

0 commit comments

Comments
 (0)