diff options
author | Michael Paquier | 2019-06-01 19:33:47 +0000 |
---|---|---|
committer | Michael Paquier | 2019-06-01 19:33:47 +0000 |
commit | 0b8e0532c65c3a2d4b0e9c254efa022767bacceb (patch) | |
tree | d641092546d18a72a322ccc04f0d71972d551d51 | |
parent | 6f54b80edd88abd5665aa12fbcf10f846dd80939 (diff) |
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/[email protected]
Backpatch-through: 9.4
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 234a3bb6d1..906fe7819f 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -6737,7 +6737,11 @@ ORDER BY c.ordinal_position; <row> <entry><literal>check_option</literal></entry> <entry><type>character_data</type></entry> - <entry>Applies to a feature not available in <productname>PostgreSQL</productname></entry> + <entry> + <literal>CASCADED</literal> or <literal>LOCAL</literal> if the view + has a <literal>CHECK OPTION</literal> defined on it, + <literal>NONE</literal> if not + </entry> </row> <row> |