[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 94e5b055dda9a3bbda9c08a7422d547345c2cf91

git at osgeo.org git at osgeo.org
Mon Nov 25 04:46:09 PST 2019


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, stable-3.0 has been updated
       via  94e5b055dda9a3bbda9c08a7422d547345c2cf91 (commit)
      from  1e39cf048e352b71c6846dfb305a9c203abf854f (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 94e5b055dda9a3bbda9c08a7422d547345c2cf91
Author: Raúl Marín <git at rmr.ninja>
Date:   Mon Nov 25 12:33:23 2019 +0100

    Fix pg_upgrade issue with st_linecrossingdirection
    
    Closes #4590

diff --git a/NEWS b/NEWS
index dd41485..0b9d466 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@ XXXX/XX/XX
 * Bug Fixes and Enhancements
   - #4558, Fix oversimplification of polygon inner rings (Raúl Marín)
   - #4588, Fix update when st_union(geometry) doesn't exist (Raúl Marín)
+  - #4590, Fix pg_upgrade issue with st_linecrossingdirection (Raúl Marín)
 
 
 PostGIS 3.0.0
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index ac6cfd9..174b4a8 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -4125,7 +4125,7 @@ CREATE OR REPLACE FUNCTION postgis_index_supportfn (internal)
 -----------------------------------------------------------------------------
 
 -- Availability: 1.4.0
-CREATE OR REPLACE FUNCTION ST_LineCrossingDirection(geom1 geometry, geom2 geometry)
+CREATE OR REPLACE FUNCTION ST_LineCrossingDirection(line1 geometry, line2 geometry)
 	RETURNS integer
 	AS 'MODULE_PATHNAME', 'ST_LineCrossingDirection'
 	SUPPORT postgis_index_supportfn

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

Summary of changes:
 NEWS                   | 1 +
 postgis/postgis.sql.in | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list