[SCM] PostGIS branch master updated. 3.5.0-256-gc8308cba9

git at osgeo.org git at osgeo.org
Wed Apr 9 12:06:59 PDT 2025


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  c8308cba9e9e99d10a9c3bd7e31fecf269d1a371 (commit)
      from  4b98ff8e333b04283e8d592d234f4dd9579e02b5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c8308cba9e9e99d10a9c3bd7e31fecf269d1a371
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Wed Apr 9 12:06:51 2025 -0700

    Match docs to function output for ST_OrderingEquals, closes #5826

diff --git a/doc/reference_relationship.xml b/doc/reference_relationship.xml
index d7330704f..f0e9c7385 100644
--- a/doc/reference_relationship.xml
+++ b/doc/reference_relationship.xml
@@ -1218,26 +1218,32 @@ WHERE ST_LineCrossingDirection(s1.geom, s2.geom) > 0;
     <refsection>
     <title>Examples</title>
 
-    <programlisting>SELECT ST_OrderingEquals(ST_GeomFromText('LINESTRING(0 0, 10 10)'),
-    ST_GeomFromText('LINESTRING(0 0, 5 5, 10 10)'));
+    <programlisting>SELECT ST_OrderingEquals(
+  'LINESTRING(0 0, 10 10)',
+  'LINESTRING(0 0, 5 5, 10 10)');
+
  st_orderingequals
 -----------
  f
-(1 row)
 
-SELECT ST_OrderingEquals(ST_GeomFromText('LINESTRING(0 0, 10 10)'),
-    ST_GeomFromText('LINESTRING(0 0, 0 0, 10 10)'));
+
+SELECT ST_OrderingEquals(
+  'LINESTRING(0 0, 10 10)',
+  'LINESTRING(0 0, 10 10)');
+
  st_orderingequals
 -----------
  t
-(1 row)
 
-SELECT ST_OrderingEquals(ST_Reverse(ST_GeomFromText('LINESTRING(0 0, 10 10)')),
-    ST_GeomFromText('LINESTRING(0 0, 0 0, 10 10)'));
+
+SELECT ST_OrderingEquals(
+  'POLYGON((0 0, 0 1, 1 1, 1 0, 0 0))',
+  'POLYGON((0 0, 1 0, 1 1, 0 1, 0 0))');
+
  st_orderingequals
 -----------
  f
-(1 row)
+
 </programlisting>
       </refsection>
       <refsection>

-----------------------------------------------------------------------

Summary of changes:
 doc/reference_relationship.xml | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list