Another gin_desc fix.

The number of items inserted was incorrectly printed as if it was a boolean.
This commit is contained in:
Heikki Linnakangas 2013-11-28 23:35:50 +02:00
parent 97c19e6c38
commit 2fe69cacff
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ gin_desc(StringInfo buf, uint8 xl_info, char *rec)
(((ginxlogInsertEntry *) payload)->isDelete) ? 'T' : 'F');
else if (xlrec->flags & GIN_INSERT_ISLEAF)
appendStringInfo(buf, " nitem: %u",
(((ginxlogInsertDataLeaf *) payload)->nitem) ? 'T' : 'F');
(((ginxlogInsertDataLeaf *) payload)->nitem));
else
appendStringInfo(buf, " pitem: %u-%u/%u",
PostingItemGetBlockNumber((PostingItem *) payload),