]> granicus.if.org Git - postgresql/commit
connoinherit may be true only for CHECK constraints
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 20 Jul 2012 16:33:34 +0000 (12:33 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 20 Jul 2012 18:08:07 +0000 (14:08 -0400)
commitf5bcd398addcbeb785f0513cf28cba5d1ecd2c8a
treee351181eb9be8b7a11a5294e002833b40e0b9ddc
parent8e617e29aaccfdd1b85af7f50dc83aa6dd7ef550
connoinherit may be true only for CHECK constraints

The code was setting it true for other constraints, which is
bogus.  Doing so caused bogus catalog entries for such constraints, and
in particular caused an error to be raised when trying to drop a
constraint of types other than CHECK from a table that has children,
such as reported in bug #6712.

In 9.2, additionally ignore connoinherit=true for other constraint
types, to avoid having to force initdb; existing databases might already
contain bogus catalog entries.

Includes a catversion bump (in HEAD only).

Bug report from Miroslav Ć ulc
Analysis from Amit Kapila and Noah Misch; Amit also contributed the patch.
src/backend/catalog/index.c
src/backend/commands/tablecmds.c
src/backend/commands/trigger.c
src/include/catalog/catversion.h
src/test/regress/expected/inherit.out
src/test/regress/sql/inherit.sql