diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-03 18:40:02 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-03 18:40:02 +0000 |
commit | 9886a46e76eed65d331c6bc250680249c4748a6c (patch) | |
tree | 4b178efb300c17c05e410c83ebce684e869c2e9a /contrib/spi/refint.c | |
parent | 793a4ba35e96e8b36b3589e251524d0ec71624aa (diff) | |
download | postgresql-9886a46e76eed65d331c6bc250680249c4748a6c.tar.gz postgresql-9886a46e76eed65d331c6bc250680249c4748a6c.zip |
Restore NOTICEs that were mistakenly removed from triggers regression
test expected output. Tweak contrib/spi Makefile so that refint.so is
by default built with appropriate NOTICE support for regression testing.
Diffstat (limited to 'contrib/spi/refint.c')
-rw-r--r-- | contrib/spi/refint.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index 61c9e71fea6..c3259e49b71 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -563,12 +563,14 @@ check_foreign_key(PG_FUNCTION_ARGS) elog(ERROR, "%s: tuple referenced in %s", trigger->tgname, relname); } -#ifdef REFINT_VERBOSE else - elog(DEBUG3, "%s: %d tuple(s) of %s are %s", + { +#ifdef REFINT_VERBOSE + elog(NOTICE, "%s: %d tuple(s) of %s are %s", trigger->tgname, SPI_processed, relname, (action == 'c') ? "deleted" : "setted to null"); #endif + } args += nkeys + 1; /* to the next relation */ } |