Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1a87c14

Browse files
committed
I am sorry, I misinterpreted the still failing trigger regression test.
The offending code has been removed, the action is now always dependent :-) I suggest the following patch, to finally make trigger regression happy again: <<refint1.patch>> After that you can remove the following from TODO: Remove ERROR: check_primary_key: even number of arguments should be specified Trigger regression test fails Andreas
1 parent ca00c90 commit 1a87c14

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

contrib/spi/refint.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
* constraints using general triggers.
44
*/
55

6-
#define DEBUG_QUERY 1
7-
86
#include "executor/spi.h" /* this is what you need to work with SPI */
97
#include "commands/trigger.h" /* -"- and triggers */
108
#include <ctype.h> /* tolower () */

src/backend/utils/adt/acl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.34 1999/03/21 06:31:59 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.35 1999/05/12 12:47:24 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -108,7 +108,7 @@ aclparse(char *s, AclItem *aip, unsigned *modechg)
108108

109109
#ifdef ACLDEBUG_TRACE
110110
printf("aclparse: input = '%s'\n", s);
111-
#endif ACLDEBUG_TRACE
111+
#endif
112112
aip->ai_idtype = ACL_IDTYPE_UID;
113113
s = getid(s, name);
114114
if (*s != ACL_MODECHG_ADD_CHR &&

0 commit comments

Comments
 (0)