From f2719f6975398727ed492ecbcb2028bd134e5f6b Mon Sep 17 00:00:00 2001 From: Stephen Frost <sfrost@snowman.net> Date: Wed, 17 Jul 2013 10:50:39 -0400 Subject: [PATCH] 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. --- doc/src/sgml/ref/alter_view.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- GitLab