Commit 3ca3bb7d authored by Hiroshi Inoue's avatar Hiroshi Inoue

Fix assert bug(was my fault)

parent 598ea2c3
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $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 $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -2269,8 +2269,7 @@ extern void AbortBufferIO(void) ...@@ -2269,8 +2269,7 @@ extern void AbortBufferIO(void)
} }
else else
{ {
Assert(!(buf->flags & BM_DIRTY)); Assert((buf->flags & BM_DIRTY) != 0);
/* Assert(!(buf->flags & BM_IO_ERROR)); */
if (buf->flags & BM_IO_ERROR) if (buf->flags & BM_IO_ERROR)
{ {
elog(NOTICE, "!!! write error seems permanent !!!"); elog(NOTICE, "!!! write error seems permanent !!!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment