Skip to content

Commit e459dcf

Browse files
committed
Doc: de-document unimplemented geometric operators.
In commit 791090b, 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 c5c192d just added an implementation for it.) Per complaint from Anton Voloshin. Discussion: https://postgr.es/m/3426566.1638832718@sss.pgh.pa.us
1 parent 65f860e commit e459dcf

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

doc/src/sgml/func.sgml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10430,7 +10430,7 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
1043010430
</para>
1043110431
<para>
1043210432
Computes the center point.
10433-
Available for <type>box</type>, <type>lseg</type>, <type>path</type>,
10433+
Available for <type>box</type>, <type>lseg</type>,
1043410434
<type>polygon</type>, <type>circle</type>.
1043510435
</para>
1043610436
<para>
@@ -10496,8 +10496,6 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
1049610496
(<type>point</type>, <type>line</type>),
1049710497
(<type>lseg</type>, <type>box</type>),
1049810498
(<type>lseg</type>, <type>lseg</type>),
10499-
(<type>lseg</type>, <type>line</type>),
10500-
(<type>line</type>, <type>box</type>),
1050110499
(<type>line</type>, <type>lseg</type>).
1050210500
</para>
1050310501
<para>
@@ -10513,11 +10511,11 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
1051310511
</para>
1051410512
<para>
1051510513
Computes the distance between the objects.
10516-
Available for all seven geometric types, for all combinations
10514+
Available for all geometric types except <type>polygon</type>,
10515+
for all combinations
1051710516
of <type>point</type> with another geometric type, and for
1051810517
these additional pairs of types:
1051910518
(<type>box</type>, <type>lseg</type>),
10520-
(<type>box</type>, <type>line</type>),
1052110519
(<type>lseg</type>, <type>line</type>),
1052210520
(<type>polygon</type>, <type>circle</type>)
1052310521
(and the commutator cases).

0 commit comments

Comments
 (0)