mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
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.
This commit is contained in:
@ -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 */
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user