@@ -516,7 +516,7 @@ PrefetchSharedBuffer(SMgrRelation smgr_reln,
516516
517517 /* create a tag so we can lookup the buffer */
518518 InitBufferTag (& newTag , & smgr_reln -> smgr_rlocator .locator ,
519- forkNum , blockNum );
519+ forkNum , blockNum );
520520
521521 /* determine its hash code and partition lock ID */
522522 newHash = BufTableHashCode (& newTag );
@@ -3297,8 +3297,8 @@ DropRelationsAllBuffers(SMgrRelation *smgr_reln, int nlocators)
32973297 uint32 buf_state ;
32983298
32993299 /*
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.
33023302 */
33033303
33043304 if (!use_bsearch )
@@ -3425,8 +3425,8 @@ DropDatabaseBuffers(Oid dbid)
34253425 uint32 buf_state ;
34263426
34273427 /*
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.
34303430 */
34313431 if (bufHdr -> tag .dbOid != dbid )
34323432 continue ;
@@ -3572,8 +3572,8 @@ FlushRelationBuffers(Relation rel)
35723572 bufHdr = GetBufferDescriptor (i );
35733573
35743574 /*
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.
35773577 */
35783578 if (!BufTagMatchesRelFileLocator (& bufHdr -> tag , & rel -> rd_locator ))
35793579 continue ;
@@ -3645,8 +3645,8 @@ FlushRelationsAllBuffers(SMgrRelation *smgrs, int nrels)
36453645 uint32 buf_state ;
36463646
36473647 /*
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.
36503650 */
36513651
36523652 if (!use_bsearch )
@@ -3880,8 +3880,8 @@ FlushDatabaseBuffers(Oid dbid)
38803880 bufHdr = GetBufferDescriptor (i );
38813881
38823882 /*
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.
38853885 */
38863886 if (bufHdr -> tag .dbOid != dbid )
38873887 continue ;
0 commit comments