mirror of
https://github.com/postgres/postgres.git
synced 2025-08-18 12:22:09 +03:00
Post-PG 10 beta1 pgindent run
perltidy run not included.
This commit is contained in:
@@ -117,18 +117,18 @@ gin_desc(StringInfo buf, XLogReaderState *record)
|
||||
|
||||
if (!(xlrec->flags & GIN_INSERT_ISDATA))
|
||||
appendStringInfo(buf, " isdelete: %c",
|
||||
(((ginxlogInsertEntry *) payload)->isDelete) ? 'T' : 'F');
|
||||
(((ginxlogInsertEntry *) payload)->isDelete) ? 'T' : 'F');
|
||||
else if (xlrec->flags & GIN_INSERT_ISLEAF)
|
||||
desc_recompress_leaf(buf, (ginxlogRecompressDataLeaf *) payload);
|
||||
else
|
||||
{
|
||||
ginxlogInsertDataInternal *insertData =
|
||||
(ginxlogInsertDataInternal *) payload;
|
||||
(ginxlogInsertDataInternal *) payload;
|
||||
|
||||
appendStringInfo(buf, " pitem: %u-%u/%u",
|
||||
PostingItemGetBlockNumber(&insertData->newitem),
|
||||
ItemPointerGetBlockNumber(&insertData->newitem.key),
|
||||
ItemPointerGetOffsetNumber(&insertData->newitem.key));
|
||||
PostingItemGetBlockNumber(&insertData->newitem),
|
||||
ItemPointerGetBlockNumber(&insertData->newitem.key),
|
||||
ItemPointerGetOffsetNumber(&insertData->newitem.key));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -159,7 +159,7 @@ gin_desc(StringInfo buf, XLogReaderState *record)
|
||||
else
|
||||
{
|
||||
ginxlogVacuumDataLeafPage *xlrec =
|
||||
(ginxlogVacuumDataLeafPage *) XLogRecGetBlockData(record, 0, NULL);
|
||||
(ginxlogVacuumDataLeafPage *) XLogRecGetBlockData(record, 0, NULL);
|
||||
|
||||
desc_recompress_leaf(buf, &xlrec->data);
|
||||
}
|
||||
|
Reference in New Issue
Block a user