Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c016a commit 2763980Copy full SHA for 2763980
src/backend/storage/buffer/bufmgr.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.194 2005/08/12 21:42:53 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.195 2005/08/12 23:13:54 momjian Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -153,8 +153,6 @@ ReadBuffer(Relation reln, BlockNumber blockNum)
153
* block is not currently in memory.
154
155
bufHdr = BufferAlloc(reln, blockNum, &found);
156
- /* we are guaranted that nobody else has touched this will-be-new block */
157
- Assert(!(found && isExtend));
158
if (found)
159
BufferHitCount++;
160
}
0 commit comments