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

Commit32d6287

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 commit4228817.Backpatch: 12-, just like commit4228817
1 parent4228817 commit32d6287

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
@@ -7075,10 +7075,10 @@ heap_compute_xid_horizon_for_tuples(Relation rel,
70757075
xid_horizon_prefetch_buffer(rel,&prefetch_state,1);
70767076
#endif
70777077

7078+
LockBuffer(buf,BUFFER_LOCK_SHARE);
7079+
70787080
page=BufferGetPage(buf);
70797081
maxoff=PageGetMaxOffsetNumber(page);
7080-
7081-
LockBuffer(buf,BUFFER_LOCK_SHARE);
70827082
}
70837083

70847084
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp