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 598ea2c commit 3ca3bb7Copy full SHA for 3ca3bb7
src/backend/storage/buffer/bufmgr.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.72 2000/01/26 05:56:50 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.73 2000/02/17 05:00:38 inoue Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -2269,8 +2269,7 @@ extern void AbortBufferIO(void)
2269
}
2270
else
2271
{
2272
- Assert(!(buf->flags & BM_DIRTY));
2273
- /* Assert(!(buf->flags & BM_IO_ERROR)); */
+ Assert((buf->flags & BM_DIRTY) != 0);
2274
if (buf->flags & BM_IO_ERROR)
2275
2276
elog(NOTICE, "!!! write error seems permanent !!!");
0 commit comments