diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-11-03 10:32:20 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-11-03 10:43:12 +0100 |
commit | 2f70fdb0644c32c4154236c2b5c241bec92eac5e (patch) | |
tree | 26e74618f16302e3cf5cf69a08a8c3de6557e0e2 /doc/src | |
parent | 44a184cb686866b10d63695db344195c239f9374 (diff) | |
download | postgresql-2f70fdb0644c32c4154236c2b5c241bec92eac5e.tar.gz postgresql-2f70fdb0644c32c4154236c2b5c241bec92eac5e.zip |
Remove deprecated containment operators for built-in types
Remove old containment operators @ and ~ for built-in geometry data
types. These have been deprecated; use <@ and @> instead.
(Some contrib modules still contain the same deprecated operators.
That will be dealt with separately.)
Author: Justin Pryzby <pryzby@telsasoft.com>
Discussion: https://www.postgresql.org/message-id/flat/20201027032511.GF9241@telsasoft.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index bf6004f321f..ee721d258e0 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -10890,15 +10890,6 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple </para> </caution> - <note> - <para> - Before <productname>PostgreSQL</productname> 8.2, the containment - operators <literal>@></literal> and <literal><@</literal> were respectively - called <literal>~</literal> and <literal>@</literal>. These names are still - available, but are deprecated and will eventually be removed. - </para> - </note> - <table id="functions-geometry-func-table"> <title>Geometric Functions</title> <tgroup cols="1"> |