]> granicus.if.org Git - postgresql/commit
Change syntax of new CHECK NO INHERIT constraints
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 24 Jul 2012 19:49:54 +0000 (15:49 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 24 Jul 2012 20:01:32 +0000 (16:01 -0400)
commitd7b47e515530520da9564b05991bd8a8c6f52b06
treefeeada7a3a64415b1e1fe1bc50e008fe5a6329e1
parentd61d9aa7501f31f99ee089f8b014161254eafa89
Change syntax of new CHECK NO INHERIT constraints

The initially implemented syntax, "CHECK NO INHERIT (expr)" was not
deemed very good, so switch to "CHECK (expr) NO INHERIT" instead.  This
way it looks similar to SQL-standards compliant constraint attribute.

Backport to 9.2 where the new syntax and feature was introduced.

Per discussion.
12 files changed:
doc/src/sgml/ref/alter_table.sgml
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/release-9.2.sgml
src/backend/commands/typecmds.c
src/backend/parser/gram.y
src/backend/utils/adt/ruleutils.c
src/test/regress/expected/alter_table.out
src/test/regress/expected/inherit.out
src/test/regress/input/constraints.source
src/test/regress/output/constraints.source
src/test/regress/sql/alter_table.sql
src/test/regress/sql/inherit.sql