@@ -516,7 +516,7 @@ PrefetchSharedBuffer(SMgrRelation smgr_reln,
516
516
517
517
/* create a tag so we can lookup the buffer */
518
518
InitBufferTag (& newTag , & smgr_reln -> smgr_rlocator .locator ,
519
- forkNum , blockNum );
519
+ forkNum , blockNum );
520
520
521
521
/* determine its hash code and partition lock ID */
522
522
newHash = BufTableHashCode (& newTag );
@@ -3297,8 +3297,8 @@ DropRelationsAllBuffers(SMgrRelation *smgr_reln, int nlocators)
3297
3297
uint32 buf_state ;
3298
3298
3299
3299
/*
3300
- * As in DropRelationBuffers, an unlocked precheck should be
3301
- * safe and saves some cycles.
3300
+ * As in DropRelationBuffers, an unlocked precheck should be safe and
3301
+ * saves some cycles.
3302
3302
*/
3303
3303
3304
3304
if (!use_bsearch )
@@ -3425,8 +3425,8 @@ DropDatabaseBuffers(Oid dbid)
3425
3425
uint32 buf_state ;
3426
3426
3427
3427
/*
3428
- * As in DropRelationBuffers, an unlocked precheck should be
3429
- * safe and saves some cycles.
3428
+ * As in DropRelationBuffers, an unlocked precheck should be safe and
3429
+ * saves some cycles.
3430
3430
*/
3431
3431
if (bufHdr -> tag .dbOid != dbid )
3432
3432
continue ;
@@ -3572,8 +3572,8 @@ FlushRelationBuffers(Relation rel)
3572
3572
bufHdr = GetBufferDescriptor (i );
3573
3573
3574
3574
/*
3575
- * As in DropRelationBuffers, an unlocked precheck should be
3576
- * safe and saves some cycles.
3575
+ * As in DropRelationBuffers, an unlocked precheck should be safe and
3576
+ * saves some cycles.
3577
3577
*/
3578
3578
if (!BufTagMatchesRelFileLocator (& bufHdr -> tag , & rel -> rd_locator ))
3579
3579
continue ;
@@ -3645,8 +3645,8 @@ FlushRelationsAllBuffers(SMgrRelation *smgrs, int nrels)
3645
3645
uint32 buf_state ;
3646
3646
3647
3647
/*
3648
- * As in DropRelationBuffers, an unlocked precheck should be
3649
- * safe and saves some cycles.
3648
+ * As in DropRelationBuffers, an unlocked precheck should be safe and
3649
+ * saves some cycles.
3650
3650
*/
3651
3651
3652
3652
if (!use_bsearch )
@@ -3880,8 +3880,8 @@ FlushDatabaseBuffers(Oid dbid)
3880
3880
bufHdr = GetBufferDescriptor (i );
3881
3881
3882
3882
/*
3883
- * As in DropRelationBuffers, an unlocked precheck should be
3884
- * safe and saves some cycles.
3883
+ * As in DropRelationBuffers, an unlocked precheck should be safe and
3884
+ * saves some cycles.
3885
3885
*/
3886
3886
if (bufHdr -> tag .dbOid != dbid )
3887
3887
continue ;
0 commit comments