Doc: de-document unimplemented geometric operators.
authorTom Lane
Mon, 13 Dec 2021 22:49:36 +0000 (17:49 -0500)
committerTom Lane
Mon, 13 Dec 2021 22:49:36 +0000 (17:49 -0500)
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

index 81dc87fb6f353c1f88a212ab2f2e02f4c1a02549..13f39a08d5cfdefabe6646ed975aaf04959985cd 100644 (file)
@@ -10641,7 +10641,7 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
        
        
         Computes the center point.
-        Available for boxlseg, path,
+        Available for boxlseg,
         polygoncircle.
        
        
@@ -10707,8 +10707,6 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
         (pointline),
         (lsegbox),
         (lseglseg),
-        (lsegline),
-        (linebox),
         (linelseg).
        
        
@@ -10724,11 +10722,11 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
        
        
         Computes the distance between the objects.
-        Available for all seven geometric types, for all combinations
+        Available for all geometric types except polygon,
+        for all combinations
         of point with another geometric type, and for
         these additional pairs of types:
         (boxlseg),
-        (boxline),
         (lsegline),
         (polygoncircle)
         (and the commutator cases).