[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha1-81-g7a9a699

git at osgeo.org git at osgeo.org
Mon Apr 27 08:47:54 PDT 2020


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  7a9a69951336ba87ce1aa216badd2be3fed60818 (commit)
      from  d25cf5eeadbaed50ca6c12c56c66904b017a3a45 (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 7a9a69951336ba87ce1aa216badd2be3fed60818
Author: Raúl Marín <git at rmr.ninja>
Date:   Mon Apr 27 17:47:16 2020 +0200

    SQL: Fix availability for ST_Hexagon and ST_Square

diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 15313b4..62f8f19 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -5978,7 +5978,7 @@ CREATE OR REPLACE FUNCTION ST_InterpolatePoint(Line geometry, Point geometry)
 -- Grid / Hexagon coverage functions
 ---
 
--- Availability: 3.0.0
+-- Availability: 3.1.0
 CREATE OR REPLACE FUNCTION ST_Hexagon(size float8, cell_i integer, cell_j integer, origin geometry DEFAULT 'POINT(0 0)')
 	RETURNS geometry
 	AS 'MODULE_PATHNAME', 'ST_Hexagon'
@@ -5986,7 +5986,7 @@ CREATE OR REPLACE FUNCTION ST_Hexagon(size float8, cell_i integer, cell_j intege
 	PARALLEL SAFE
 	_COST_MEDIUM;
 
--- Availability: 3.0.0
+-- Availability: 3.1.0
 CREATE OR REPLACE FUNCTION ST_Square(size float8, cell_i integer, cell_j integer, origin geometry DEFAULT 'POINT(0 0)')
 	RETURNS geometry
 	AS 'MODULE_PATHNAME', 'ST_Square'
@@ -5994,7 +5994,7 @@ CREATE OR REPLACE FUNCTION ST_Square(size float8, cell_i integer, cell_j integer
 	PARALLEL SAFE
 	_COST_MEDIUM;
 
--- Availability: 3.0.0
+-- Availability: 3.1.0
 CREATE OR REPLACE FUNCTION ST_HexagonGrid(size float8, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer)
     RETURNS SETOF record
 	AS 'MODULE_PATHNAME', 'ST_ShapeGrid'
@@ -6002,7 +6002,7 @@ CREATE OR REPLACE FUNCTION ST_HexagonGrid(size float8, bounds geometry, OUT geom
 	PARALLEL SAFE
 	_COST_MEDIUM;
 
--- Availability: 3.0.0
+-- Availability: 3.1.0
 CREATE OR REPLACE FUNCTION ST_SquareGrid(size float8, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer)
     RETURNS SETOF record
 	AS 'MODULE_PATHNAME', 'ST_ShapeGrid'

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

Summary of changes:
 postgis/postgis.sql.in | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list