mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
pgindent run for 9.4
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
*
|
||||
* At the end of a scan, the AM's endscan routine undoes the locking,
|
||||
* but does *not* call IndexScanEnd --- the higher-level index_endscan
|
||||
* routine does that. (We can't do it in the AM because index_endscan
|
||||
* routine does that. (We can't do it in the AM because index_endscan
|
||||
* still needs to touch the IndexScanDesc after calling the AM.)
|
||||
*
|
||||
* Because of this, the AM does not have a choice whether to call
|
||||
@@ -79,7 +79,7 @@ RelationGetIndexScan(Relation indexRelation, int nkeys, int norderbys)
|
||||
|
||||
scan->heapRelation = NULL; /* may be set later */
|
||||
scan->indexRelation = indexRelation;
|
||||
scan->xs_snapshot = InvalidSnapshot; /* caller must initialize this */
|
||||
scan->xs_snapshot = InvalidSnapshot; /* caller must initialize this */
|
||||
scan->numberOfKeys = nkeys;
|
||||
scan->numberOfOrderBys = norderbys;
|
||||
|
||||
@@ -188,7 +188,7 @@ BuildIndexValueDescription(Relation indexRelation,
|
||||
* at rd_opcintype not the index tupdesc.
|
||||
*
|
||||
* Note: this is a bit shaky for opclasses that have pseudotype
|
||||
* input types such as ANYARRAY or RECORD. Currently, the
|
||||
* input types such as ANYARRAY or RECORD. Currently, the
|
||||
* typoutput functions associated with the pseudotypes will work
|
||||
* okay, but we might have to try harder in future.
|
||||
*/
|
||||
@@ -269,7 +269,7 @@ systable_beginscan(Relation heapRelation,
|
||||
|
||||
if (snapshot == NULL)
|
||||
{
|
||||
Oid relid = RelationGetRelid(heapRelation);
|
||||
Oid relid = RelationGetRelid(heapRelation);
|
||||
|
||||
snapshot = RegisterSnapshot(GetCatalogSnapshot(relid));
|
||||
sysscan->snapshot = snapshot;
|
||||
@@ -442,7 +442,7 @@ systable_endscan(SysScanDesc sysscan)
|
||||
* index order. Also, for largely historical reasons, the index to use
|
||||
* is opened and locked by the caller, not here.
|
||||
*
|
||||
* Currently we do not support non-index-based scans here. (In principle
|
||||
* Currently we do not support non-index-based scans here. (In principle
|
||||
* we could do a heapscan and sort, but the uses are in places that
|
||||
* probably don't need to still work with corrupted catalog indexes.)
|
||||
* For the moment, therefore, these functions are merely the thinnest of
|
||||
@@ -475,7 +475,7 @@ systable_beginscan_ordered(Relation heapRelation,
|
||||
|
||||
if (snapshot == NULL)
|
||||
{
|
||||
Oid relid = RelationGetRelid(heapRelation);
|
||||
Oid relid = RelationGetRelid(heapRelation);
|
||||
|
||||
snapshot = RegisterSnapshot(GetCatalogSnapshot(relid));
|
||||
sysscan->snapshot = snapshot;
|
||||
|
@@ -84,7 +84,7 @@
|
||||
*
|
||||
* Note: the ReindexIsProcessingIndex() check in RELATION_CHECKS is there
|
||||
* to check that we don't try to scan or do retail insertions into an index
|
||||
* that is currently being rebuilt or pending rebuild. This helps to catch
|
||||
* that is currently being rebuilt or pending rebuild. This helps to catch
|
||||
* things that don't work when reindexing system catalogs. The assertion
|
||||
* doesn't prevent the actual rebuild because we don't use RELATION_CHECKS
|
||||
* when calling the index AM's ambuild routine, and there is no reason for
|
||||
@@ -149,7 +149,7 @@ static IndexScanDesc index_beginscan_internal(Relation indexRelation,
|
||||
* index_open - open an index relation by relation OID
|
||||
*
|
||||
* If lockmode is not "NoLock", the specified kind of lock is
|
||||
* obtained on the index. (Generally, NoLock should only be
|
||||
* obtained on the index. (Generally, NoLock should only be
|
||||
* used if the caller knows it has some appropriate lock on the
|
||||
* index already.)
|
||||
*
|
||||
@@ -414,7 +414,7 @@ index_markpos(IndexScanDesc scan)
|
||||
* returnable tuple in each HOT chain, and so restoring the prior state at the
|
||||
* granularity of the index AM is sufficient. Since the only current user
|
||||
* of mark/restore functionality is nodeMergejoin.c, this effectively means
|
||||
* that merge-join plans only work for MVCC snapshots. This could be fixed
|
||||
* that merge-join plans only work for MVCC snapshots. This could be fixed
|
||||
* if necessary, but for now it seems unimportant.
|
||||
* ----------------
|
||||
*/
|
||||
@@ -553,7 +553,7 @@ index_fetch_heap(IndexScanDesc scan)
|
||||
/*
|
||||
* If we scanned a whole HOT chain and found only dead tuples, tell index
|
||||
* AM to kill its entry for that TID (this will take effect in the next
|
||||
* amgettuple call, in index_getnext_tid). We do not do this when in
|
||||
* amgettuple call, in index_getnext_tid). We do not do this when in
|
||||
* recovery because it may violate MVCC to do so. See comments in
|
||||
* RelationGetIndexScan().
|
||||
*/
|
||||
@@ -590,7 +590,7 @@ index_getnext(IndexScanDesc scan, ScanDirection direction)
|
||||
{
|
||||
/*
|
||||
* We are resuming scan of a HOT chain after having returned an
|
||||
* earlier member. Must still hold pin on current heap page.
|
||||
* earlier member. Must still hold pin on current heap page.
|
||||
*/
|
||||
Assert(BufferIsValid(scan->xs_cbuf));
|
||||
Assert(ItemPointerGetBlockNumber(&scan->xs_ctup.t_self) ==
|
||||
@@ -760,7 +760,7 @@ index_can_return(Relation indexRelation)
|
||||
* particular indexed attribute are those with both types equal to
|
||||
* the index opclass' opcintype (note that this is subtly different
|
||||
* from the indexed attribute's own type: it may be a binary-compatible
|
||||
* type instead). Only the default functions are stored in relcache
|
||||
* type instead). Only the default functions are stored in relcache
|
||||
* entries --- access methods can use the syscache to look up non-default
|
||||
* functions.
|
||||
*
|
||||
@@ -794,7 +794,7 @@ index_getprocid(Relation irel,
|
||||
* index_getprocinfo
|
||||
*
|
||||
* This routine allows index AMs to keep fmgr lookup info for
|
||||
* support procs in the relcache. As above, only the "default"
|
||||
* support procs in the relcache. As above, only the "default"
|
||||
* functions for any particular indexed attribute are cached.
|
||||
*
|
||||
* Note: the return value points into cached data that will be lost during
|
||||
|
Reference in New Issue
Block a user