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

Commit55e5352

Browse files
Get heap page max offset with buffer lock held.
On further reflection it seems better to call PageGetMaxOffsetNumber()after acquiring a buffer lock on the page. This shouldn't reallymatter, but doing it this way is cleaner.Follow-up to commit 42288174.Backpatch: 12-, just like commit 42288174
1 parent7a57960 commit55e5352

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/backend/access/heap/heapam.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7042,10 +7042,10 @@ heap_compute_xid_horizon_for_tuples(Relation rel,
70427042
xid_horizon_prefetch_buffer(rel,&prefetch_state,1);
70437043
#endif
70447044

7045+
LockBuffer(buf,BUFFER_LOCK_SHARE);
7046+
70457047
page=BufferGetPage(buf);
70467048
maxoff=PageGetMaxOffsetNumber(page);
7047-
7048-
LockBuffer(buf,BUFFER_LOCK_SHARE);
70497049
}
70507050

70517051
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp