diff options
author | Stephen Frost <sfrost@snowman.net> | 2013-07-17 10:50:39 -0400 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2013-07-17 10:53:38 -0400 |
commit | cce5d681be7abfd9f48c28151ebf2b242f8ba438 (patch) | |
tree | 8779436a7a0f29edd2dfa8b5ae814a31f345e391 | |
parent | a3957ac156da7e31da46a2d8e3b6c7669333cc99 (diff) | |
download | postgresql-cce5d681be7abfd9f48c28151ebf2b242f8ba438.tar.gz postgresql-cce5d681be7abfd9f48c28151ebf2b242f8ba438.zip |
Use correct parameter name for view_option_value
The documentation for ALTER VIEW had a minor copy-and-paste error in
defining the parameters. Noticed when reviewing the WITH CHECK OPTION
patch.
Backpatch to 9.2 where this was first introduced.
-rw-r--r-- | doc/src/sgml/ref/alter_view.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_view.sgml b/doc/src/sgml/ref/alter_view.sgml index 521f05b84a1..a43f6ad52fb 100644 --- a/doc/src/sgml/ref/alter_view.sgml +++ b/doc/src/sgml/ref/alter_view.sgml @@ -125,7 +125,7 @@ ALTER VIEW [ IF EXISTS ] <replaceable class="parameter">name</replaceable> RESET </varlistentry> <varlistentry> - <term><replaceable class="parameter">view_option_name</replaceable></term> + <term><replaceable class="parameter">view_option_value</replaceable></term> <listitem> <para> The new value for a view option. |