diff options
author | Neil Conway <neilc@samurai.com> | 2005-05-30 06:52:38 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-05-30 06:52:38 +0000 |
commit | f99b75b0a0ee642a87a10726ba8f6831c1c95cc7 (patch) | |
tree | 55a1b12aceb1d7644fe3a888f121b18b7d496ea6 /src/include | |
parent | 0832fb74dfc4128e6b2a7b38f84cbc4dd4bb46e5 (diff) | |
download | postgresql-f99b75b0a0ee642a87a10726ba8f6831c1c95cc7.tar.gz postgresql-f99b75b0a0ee642a87a10726ba8f6831c1c95cc7.zip |
Create separate ON INSERT and ON UPDATE triggers on tables with foreign
keys, rather than a single trigger for both events. This should not change
functionality, but it is more consistent: previously, there were trigger
functions for both "check_insert" and "check_update", but the former was
used for both events.
Bump catalog version number (not strictly necessary, but best to be
cautious).
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/catversion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index ffab04a85d4..b4541b77021 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.270 2005/05/30 01:20:50 tgl Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.271 2005/05/30 06:52:38 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200505291 +#define CATALOG_VERSION_NO 200505301 #endif |