Commit 1ce069b0 authored by Tom Lane's avatar Tom Lane

Got tired of explaining why this Assert is not wrong.

parent 55e4ef13
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/hash/dynahash.c,v 1.44 2002/09/02 02:47:05 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/hash/dynahash.c,v 1.45 2002/10/31 21:59:32 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -540,7 +540,8 @@ hash_search(HTAB *hashp, ...@@ -540,7 +540,8 @@ hash_search(HTAB *hashp,
/* /*
* Try to catch subsequent errors * Try to catch subsequent errors
*/ */
Assert(currBucket && !(saveState.currBucket = NULL)); Assert(currBucket);
saveState.currBucket = NULL;
} }
else else
{ {
......
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