summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2023-10-20 13:01:02 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2023-10-20 13:01:31 -0400
commitd568d2fab4be8c74804df40b733925ac92dc0dd8 (patch)
tree8052f7224f06c2281fcb5c10e13f9759fe09da80
parent985ac5ce292ab084fe56b90528df6a2496f2c507 (diff)
Doc: update CREATE OPERATOR's statement about => as an operator.
This doco said that use of => as an operator "is deprecated". It's been fully disallowed since 865f14a2d back in 9.5, but evidently that commit missed updating this statement. Do so now.
-rw-r--r--doc/src/sgml/ref/create_operator.sgml7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_operator.sgml b/doc/src/sgml/ref/create_operator.sgml
index e27512ff391..d4d45ec357d 100644
--- a/doc/src/sgml/ref/create_operator.sgml
+++ b/doc/src/sgml/ref/create_operator.sgml
@@ -52,7 +52,8 @@ CREATE OPERATOR <replaceable>name</replaceable> (
There are a few restrictions on your choice of name:
<itemizedlist>
<listitem>
- <para><literal>--</literal> and <literal>/*</literal> cannot appear anywhere in an operator name,
+ <para>
+ <literal>--</literal> and <literal>/*</literal> cannot appear anywhere in an operator name,
since they will be taken as the start of a comment.
</para>
</listitem>
@@ -72,8 +73,8 @@ CREATE OPERATOR <replaceable>name</replaceable> (
</listitem>
<listitem>
<para>
- The use of <literal>=&gt;</literal> as an operator name is deprecated. It may
- be disallowed altogether in a future release.
+ The symbol <literal>=&gt;</literal> is reserved by the SQL grammar,
+ so it cannot be used as an operator name.
</para>
</listitem>
</itemizedlist>