Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2763980

Browse files
committed
Reverse out Assert addition.
1 parent 59c016a commit 2763980

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/backend/storage/buffer/bufmgr.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.194 2005/08/12 21:42:53 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.195 2005/08/12 23:13:54 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -153,8 +153,6 @@ ReadBuffer(Relation reln, BlockNumber blockNum)
153153
* block is not currently in memory.
154154
*/
155155
bufHdr = BufferAlloc(reln, blockNum, &found);
156-
/* we are guaranted that nobody else has touched this will-be-new block */
157-
Assert(!(found && isExtend));
158156
if (found)
159157
BufferHitCount++;
160158
}

0 commit comments

Comments
 (0)