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:50:39 -0400 |
commit | f2719f6975398727ed492ecbcb2028bd134e5f6b (patch) | |
tree | 7a96fa3f116c94f0d4ebe8804e8bf452af10bd6e | |
parent | ffcf654547ef38555203e6d716f47b7065a0a87d (diff) | |
download | postgresql-f2719f6975398727ed492ecbcb2028bd134e5f6b.tar.gz postgresql-f2719f6975398727ed492ecbcb2028bd134e5f6b.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 df527aed088..db5a656808d 100644 --- a/doc/src/sgml/ref/alter_view.sgml +++ b/doc/src/sgml/ref/alter_view.sgml @@ -126,7 +126,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. |