Skip to content

Commit 685a66c

Browse files
committed
Fix typo that caused equalTriggerDescs() to return false in cases where
the two trigger sets were logically equal, but not in the same order. Caught by Holger Krug (hkrug@rationalizer.com).
1 parent 2843a13 commit 685a66c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/trigger.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/trigger.c,v 1.100 2002/01/03 23:21:23 tgl Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/trigger.c,v 1.101 2002/01/15 16:52:47 tgl Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -805,7 +805,7 @@ equalTriggerDescs(TriggerDesc *trigdesc1, TriggerDesc *trigdesc2)
805805
*/
806806
for (j = 0; j < trigdesc2->numtriggers; j++)
807807
{
808-
trig2 = trigdesc2->triggers + i;
808+
trig2 = trigdesc2->triggers + j;
809809
if (trig1->tgoid == trig2->tgoid)
810810
break;
811811
}

0 commit comments

Comments
 (0)