mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Another gin_desc fix.
The number of items inserted was incorrectly printed as if it was a boolean.
This commit is contained in:
parent
97c19e6c38
commit
2fe69cacff
1 changed files with 1 additions and 1 deletions
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Reference in a new issue