[postgis-tickets] [SCM] PostGIS branch master updated. 1ceef381a78b1724281f2c63af64e796a06a7b50

git at osgeo.org git at osgeo.org
Mon Nov 25 04:45:17 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, master has been updated
       via  1ceef381a78b1724281f2c63af64e796a06a7b50 (commit)
      from  d6ac9a570dddbb51b804b49435a0a132670f689b (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 1ceef381a78b1724281f2c63af64e796a06a7b50
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
    
    References #4590
    Closes https://github.com/CartoDB/Windshaft-cartodb/pull/1143

diff --git a/NEWS b/NEWS
index e18dfb0..20ef5c1 100644
--- a/NEWS
+++ b/NEWS
@@ -28,6 +28,7 @@ PostGIS 3.1.0
   - #4546, Fix PLPGSQL functions missing the schema qualification (Raúl Marín)
   - #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 c154fe9..9ad89be 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -4123,7 +4123,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