mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Remove redundant _bt_killitems() buffer check.
_bt_getbuf() cannot return an invalid buffer.
Oversight in commit 2ed5b87f96.
This commit is contained in:
parent
e30b0b5cfa
commit
ab2343d4cb
1 changed files with 0 additions and 4 deletions
|
|
@ -1756,10 +1756,6 @@ _bt_killitems(IndexScanDesc scan)
|
|||
/* Attempt to re-read the buffer, getting pin and lock. */
|
||||
buf = _bt_getbuf(scan->indexRelation, so->currPos.currPage, BT_READ);
|
||||
|
||||
/* It might not exist anymore; in which case we can't hint it. */
|
||||
if (!BufferIsValid(buf))
|
||||
return;
|
||||
|
||||
page = BufferGetPage(buf);
|
||||
if (BufferGetLSNAtomic(buf) == so->currPos.lsn)
|
||||
so->currPos.buf = buf;
|
||||
|
|
|
|||
Loading…
Reference in a new issue