Skip to content

Commit 4441839

Browse files
committed
Doc: fix examples of # operators so they actually work.
These worked as-is until around 7.0, but fail in newer versions because there are more operators named "#". Besides it's a bit inconsistent that only two of the examples on this page lack type names on their constants. Report: <20160923081530.1517.75670@wrigleys.postgresql.org>
1 parent f39bb48 commit 4441839

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/func.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7829,12 +7829,12 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
78297829
<row>
78307830
<entry> <literal>#</literal> </entry>
78317831
<entry>Point or box of intersection</entry>
7832-
<entry><literal>'((1,-1),(-1,1))' # '((1,1),(-1,-1))'</literal></entry>
7832+
<entry><literal>box '((1,-1),(-1,1))' # box '((1,1),(-2,-2))'</literal></entry>
78337833
</row>
78347834
<row>
78357835
<entry> <literal>#</literal> </entry>
78367836
<entry>Number of points in path or polygon</entry>
7837-
<entry><literal># '((1,0),(0,1),(-1,0))'</literal></entry>
7837+
<entry><literal># path '((1,0),(0,1),(-1,0))'</literal></entry>
78387838
</row>
78397839
<row>
78407840
<entry> <literal>@-@</literal> </entry>

0 commit comments

Comments
 (0)