Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitee4673a

Browse files
committed
Don't exaggerate the number of temporary blocks read.
A read that returns zero bytes (or an error) should not incrementthe number of temporary blocks read.Thomas MunroDiscussion:http://postgr.es/m/CAEepm=21xgihg=WaG+O5MFotEZfN6kFETpfw+RkSnEqNQqGn2Q@mail.gmail.com
1 parentcf7ab13 commitee4673a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎src/backend/storage/file/buffile.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,8 @@ BufFileLoadBuffer(BufFile *file)
264264
file->offsets[file->curFile]+=file->nbytes;
265265
/* we choose not to advance curOffset here */
266266

267-
pgBufferUsage.temp_blks_read++;
267+
if (file->nbytes>0)
268+
pgBufferUsage.temp_blks_read++;
268269
}
269270

270271
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp