Skip to content
Snippets Groups Projects
Commit 2fe69cac authored by Heikki Linnakangas's avatar Heikki Linnakangas
Browse files

Another gin_desc fix.

The number of items inserted was incorrectly printed as if it was a boolean.
parent 97c19e6c
No related branches found
No related tags found
No related merge requests found
......@@ -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),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment