Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2fe69ca

Browse files
committed
Another gin_desc fix.
The number of items inserted was incorrectly printed as if it was a boolean.
1 parent97c19e6 commit2fe69ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/access/rmgrdesc/gindesc.c

Lines changed: 1 addition & 1 deletion
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
elseif (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)

[8]ページ先頭

©2009-2025 Movatter.jp