From 922b23c13be075595c2abc67736b214cb90f84d9 Mon Sep 17 00:00:00 2001
From: Tom Lane
Date: Mon, 13 Dec 2021 17:49:36 -0500
Subject: Doc: de-document unimplemented geometric operators.
In commit 791090bd7, I made an effort to fill in documentation
for all geometric operators listed in pg_operator. However,
it now appears that at least some of the omissions may have been
intentional, because some of those operator entries point at
unimplemented stub functions. Remove those from the docs again.
(In HEAD, poly_distance stays, because c5c192d7b just added an
implementation for it.)
Per complaint from Anton Voloshin.
Discussion: https://postgr.es/m/3426566.1638832718@sss.pgh.pa.us
---
doc/src/sgml/func.sgml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 0a725a6711..5801299b27 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -10976,7 +10976,7 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
Computes the center point.
- Available for box, lseg, path,
+ Available for box, lseg,
polygon, circle.
@@ -11042,8 +11042,6 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
(point, line),
(lseg, box),
(lseg, lseg),
- (lseg, line),
- (line, box),
(line, lseg).
@@ -11063,7 +11061,6 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
of point with another geometric type, and for
these additional pairs of types:
(box, lseg),
- (box, line),
(lseg, line),
(polygon, circle)
(and the commutator cases).
--
cgit v1.2.3