diff options
author | Peter Eisentraut | 2016-08-03 21:02:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-08-03 21:02:00 +0000 |
commit | 81568a971f2634bc447af2788eafee899f2db2a1 (patch) | |
tree | 81eedf81e7ca5c3a8b27d71639b04db81f5b0e2d | |
parent | 3e2f3c2e423b3ae906668c186bac79522b8e3e29 (diff) |
doc: Move indexterms to avoid whitespace issue in man pages
-rw-r--r-- | doc/src/sgml/ref/create_view.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_view.sgml b/doc/src/sgml/ref/create_view.sgml index e37bb009b4..ede1698051 100644 --- a/doc/src/sgml/ref/create_view.sgml +++ b/doc/src/sgml/ref/create_view.sgml @@ -164,15 +164,16 @@ CREATE VIEW <replaceable>name</> AS WITH RECURSIVE <replaceable>name</> (<replac </varlistentry> <varlistentry> - <term><literal>WITH [ CASCADED | LOCAL ] CHECK OPTION</literal></term> - <listitem> - <para> + <term><literal>WITH [ CASCADED | LOCAL ] CHECK OPTION</literal> <indexterm zone="SQL-CREATEVIEW"> <primary>CHECK OPTION</primary> </indexterm> <indexterm zone="SQL-CREATEVIEW"> <primary>WITH CHECK OPTION</primary> </indexterm> + </term> + <listitem> + <para> This option controls the behavior of automatically updatable views. When this option is specified, <command>INSERT</> and <command>UPDATE</> commands on the view will be checked to ensure that new rows satisfy the |