Skip to content

Commit 7b1110d

Browse files
committed
Fix comment in instrument.h
local_blks_dirtied tracks the number of local blocks dirtied, not shared ones. Author: Kirk Jamison Discussion: https://postgr.es/m/OSBPR01MB2341760686DC056DE89D2AB9EF710@OSBPR01MB2341.jpnprd01.prod.outlook.com
1 parent c5315f4 commit 7b1110d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/executor/instrument.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ typedef struct BufferUsage
2424
long shared_blks_written; /* # of shared disk blocks written */
2525
long local_blks_hit; /* # of local buffer hits */
2626
long local_blks_read; /* # of local disk blocks read */
27-
long local_blks_dirtied; /* # of shared blocks dirtied */
27+
long local_blks_dirtied; /* # of local blocks dirtied */
2828
long local_blks_written; /* # of local disk blocks written */
2929
long temp_blks_read; /* # of temp blocks read */
3030
long temp_blks_written; /* # of temp blocks written */

0 commit comments

Comments
 (0)