From: Michael Paquier Date: Sat, 1 Jun 2019 19:34:02 +0000 (-0400) Subject: Fix documentation of check_option in information_schema.views X-Git-Tag: REL_10_9~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b8c93c8742a3779e59759f8e482428246e8547c;p=thirdparty%2Fpostgresql.git Fix documentation of check_option in information_schema.views Support of CHECK OPTION for updatable views has been added in 9.4, but the documentation of information_schema never got the call even if the information displayed is correct. Author: Gilles Darold Discussion: https://postgr.es/m/75d07704-6c74-4f26-656a-10045c01a17e@darold.net Backpatch-through: 9.4 --- diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 1d40d50ae02..b39c283614c 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -6661,7 +6661,11 @@ ORDER BY c.ordinal_position; check_option character_data - Applies to a feature not available in PostgreSQL + + CASCADED or LOCAL if the view + has a CHECK OPTION defined on it, + NONE if not +