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 73dd716 commit 1bd6f76Copy full SHA for 1bd6f76
src/backend/nodes/equalfuncs.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.63 2000/02/21 18:47:00 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.64 2000/03/01 18:47:43 tgl Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -98,7 +98,7 @@ _equalExpr(Expr *a, Expr *b)
98
static bool
99
_equalAttr(Attr *a, Attr *b)
100
{
101
- if (!strcmp(a->relname, b->relname))
+ if (strcmp(a->relname, b->relname) != 0)
102
return false;
103
if (!equal(a->attrs, b->attrs))
104
0 commit comments