mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Post-PG 10 beta1 pgindent run
perltidy run not included.
This commit is contained in:
@@ -66,7 +66,7 @@ brin_desc(StringInfo buf, XLogReaderState *record)
|
||||
xl_brin_desummarize *xlrec = (xl_brin_desummarize *) rec;
|
||||
|
||||
appendStringInfo(buf, "pagesPerRange %u, heapBlk %u, page offset %u",
|
||||
xlrec->pagesPerRange, xlrec->heapBlk, xlrec->regOffset);
|
||||
xlrec->pagesPerRange, xlrec->heapBlk, xlrec->regOffset);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -36,7 +36,7 @@ clog_desc(StringInfo buf, XLogReaderState *record)
|
||||
|
||||
memcpy(&xlrec, rec, sizeof(xl_clog_truncate));
|
||||
appendStringInfo(buf, "page %d; oldestXact %u",
|
||||
xlrec.pageno, xlrec.oldestXact);
|
||||
xlrec.pageno, xlrec.oldestXact);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -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