diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-12 12:47:24 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-12 12:47:24 +0000 |
commit | 1a87c14c9cf2c58009dd653c5356f68d605dff2f (patch) | |
tree | b0d6dd2c81697e23f445b71485c9b1bb6991bc6d | |
parent | ca00c902fbda4d5f4027429ca0b6a957a02505fc (diff) | |
download | postgresql-1a87c14c9cf2c58009dd653c5356f68d605dff2f.tar.gz postgresql-1a87c14c9cf2c58009dd653c5356f68d605dff2f.zip |
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
-rw-r--r-- | contrib/spi/refint.c | 2 | ||||
-rw-r--r-- | src/backend/utils/adt/acl.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index de5065f5391..a4b686fecb4 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -3,8 +3,6 @@ * constraints using general triggers. */ -#define DEBUG_QUERY 1 - #include "executor/spi.h" /* this is what you need to work with SPI */ #include "commands/trigger.h" /* -"- and triggers */ #include <ctype.h> /* tolower () */ diff --git a/src/backend/utils/adt/acl.c b/src/backend/utils/adt/acl.c index 8153cacb88a..2ca61704076 100644 --- a/src/backend/utils/adt/acl.c +++ b/src/backend/utils/adt/acl.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.34 1999/03/21 06:31:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.35 1999/05/12 12:47:24 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -108,7 +108,7 @@ aclparse(char *s, AclItem *aip, unsigned *modechg) #ifdef ACLDEBUG_TRACE printf("aclparse: input = '%s'\n", s); -#endif ACLDEBUG_TRACE +#endif aip->ai_idtype = ACL_IDTYPE_UID; s = getid(s, name); if (*s != ACL_MODECHG_ADD_CHR && |