aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/config.sgml23
-rw-r--r--doc/src/sgml/syntax.sgml6
2 files changed, 1 insertions, 28 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 8cd3d6901c5..4b60382778f 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -9389,29 +9389,6 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
</listitem>
</varlistentry>
- <varlistentry id="guc-operator-precedence-warning" xreflabel="operator_precedence_warning">
- <term><varname>operator_precedence_warning</varname> (<type>boolean</type>)
- <indexterm>
- <primary><varname>operator_precedence_warning</varname> configuration parameter</primary>
- </indexterm>
- </term>
- <listitem>
- <para>
- When on, the parser will emit a warning for any construct that might
- have changed meanings since <productname>PostgreSQL</productname> 9.4 as a result
- of changes in operator precedence. This is useful for auditing
- applications to see if precedence changes have broken anything; but it
- is not meant to be kept turned on in production, since it will warn
- about some perfectly valid, standard-compliant SQL code.
- The default is <literal>off</literal>.
- </para>
-
- <para>
- See <xref linkend="sql-precedence"/> for more information.
- </para>
- </listitem>
- </varlistentry>
-
<varlistentry id="guc-quote-all-identifiers" xreflabel="quote-all-identifiers">
<term><varname>quote_all_identifiers</varname> (<type>boolean</type>)
<indexterm>
diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml
index 3fdd87823e0..d66560b587c 100644
--- a/doc/src/sgml/syntax.sgml
+++ b/doc/src/sgml/syntax.sgml
@@ -1121,11 +1121,7 @@ SELECT 3 OPERATOR(pg_catalog.+) 4;
cases, these changes will result in no behavioral change, or perhaps
in <quote>no such operator</quote> failures which can be resolved by adding
parentheses. However there are corner cases in which a query might
- change behavior without any parsing error being reported. If you are
- concerned about whether these changes have silently broken something,
- you can test your application with the configuration
- parameter <xref linkend="guc-operator-precedence-warning"/> turned on
- to see if any warnings are logged.
+ change behavior without any parsing error being reported.
</para>
</note>
</sect2>