diff options
author | Jan Wieck <JanWieck@Yahoo.com> | 2000-01-31 14:02:27 +0000 |
---|---|---|
committer | Jan Wieck <JanWieck@Yahoo.com> | 2000-01-31 14:02:27 +0000 |
commit | c823143f8a19134eff8b7c49767c8e1bd18261bf (patch) | |
tree | 40b4a673b9b317dc63c50f168adf182d3b61a151 /src | |
parent | a152ebeec6142fbdaaaecd0922041b2f70745851 (diff) | |
download | postgresql-c823143f8a19134eff8b7c49767c8e1bd18261bf.tar.gz postgresql-c823143f8a19134eff8b7c49767c8e1bd18261bf.zip |
Fixed bug in NO ACTION trigger proc entries.
Jan
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_proc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 05d81e91e98..37d4313969e 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_proc.h,v 1.118 2000/01/26 05:57:58 momjian Exp $ + * $Id: pg_proc.h,v 1.119 2000/01/31 14:02:27 wieck Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -2142,9 +2142,9 @@ DATA(insert OID = 1652 ( RI_FKey_setdefault_del PGUID 11 f t f 0 f 0 "" 100 0 0 DESCR("referential integrity ON DELETE SET DEFAULT"); DATA(insert OID = 1653 ( RI_FKey_setdefault_upd PGUID 11 f t f 0 f 0 "" 100 0 0 100 RI_FKey_setdefault_upd - )); DESCR("referential integrity ON UPDATE SET DEFAULT"); -DATA(insert OID = 1654 ( RI_FKey_noaction_del PGUID 11 f t f 0 f 0 "" 100 0 0 100 RI_FKey_setdefault_del - )); +DATA(insert OID = 1654 ( RI_FKey_noaction_del PGUID 11 f t f 0 f 0 "" 100 0 0 100 RI_FKey_noaction_del - )); DESCR("referential integrity ON DELETE NO ACTION"); -DATA(insert OID = 1655 ( RI_FKey_noaction_upd PGUID 11 f t f 0 f 0 "" 100 0 0 100 RI_FKey_setdefault_upd - )); +DATA(insert OID = 1655 ( RI_FKey_noaction_upd PGUID 11 f t f 0 f 0 "" 100 0 0 100 RI_FKey_noaction_upd - )); DESCR("referential integrity ON UPDATE NO ACTION"); /* for mac type support */ |