[postgis-tickets] [SCM] PostGIS branch stable-3.1 updated. 3.1.5-22-gbbb4d0804

git at osgeo.org git at osgeo.org
Tue Jun 21 12:48:46 PDT 2022


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.1 has been updated
       via  bbb4d0804a4fb5293aaf1b191415c2a128cfe7d1 (commit)
       via  1cf574dfe7467473a12346929c48e91aac2b7ac3 (commit)
      from  9fe2441742038ca71643807858f7f3ffd497109d (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 bbb4d0804a4fb5293aaf1b191415c2a128cfe7d1
Author: Regina Obe <lr at pcorp.us>
Date:   Tue Jun 21 15:48:38 2022 -0400

    Put a note that 3.1 stops at PG 14 support and also clean up notes about windows experimental builds

diff --git a/doc/installation.xml b/doc/installation.xml
index 88d0a88a6..f5c2d67a8 100644
--- a/doc/installation.xml
+++ b/doc/installation.xml
@@ -36,16 +36,16 @@ in each individual database you want to use it in.
 		or another OS, you may find additional more detailed help at <ulink url="http://trac.osgeo.org/postgis/wiki/UsersWikiInstall">PostGIS User contributed compile guides</ulink> and <ulink url="http://trac.osgeo.org/postgis/wiki/DevWikiMain">PostGIS Dev Wiki</ulink>.</para>
 	  <para>Pre-Built Packages for various OS are listed in <ulink url="http://trac.osgeo.org/postgis/wiki/UsersWikiPackages">PostGIS Pre-built Packages</ulink></para>
 	  <para>If you are a windows user, you can get stable builds via Stackbuilder or <ulink url="https://postgis.net/windows_downloads">PostGIS Windows download site</ulink>
-	  We also have <ulink url="https://postgis.net/windows_downloads">very bleeding-edge windows experimental builds</ulink> that are built usually once or twice a week or whenever anything exciting happens.  You can
-	  use these to experiment with the in progress releases of PostGIS</para>
+	  We also have <ulink url="https://postgis.net/windows_downloads">windows experimental builds</ulink> that are built whenever there is a change in the PostGIS source code.  You can
+	  use these to experiment with the in progress releases of PostGIS or to get a bug patch before it is released.</para>
 	</note>
 
 	<para>
 	  The PostGIS module is an extension to the PostgreSQL backend server. As
 	  such, PostGIS &last_release_version; <emphasis>requires</emphasis> full
 	  PostgreSQL server headers access in order to compile. It can be built
-	  against PostgreSQL versions &min_postgres_version; or higher. Earlier
-	  versions of PostgreSQL are <emphasis>not</emphasis> supported.
+	  against PostgreSQL versions &min_postgres_version;- 14. Earlier
+	  and later versions of PostgreSQL are <emphasis>not</emphasis> supported.
 	</para>
 
 	<para>

commit 1cf574dfe7467473a12346929c48e91aac2b7ac3
Author: Regina Obe <lr at pcorp.us>
Date:   Tue Jun 21 10:01:23 2022 -0400

    More schema quals

diff --git a/extensions/postgis_extension_helper.sql b/extensions/postgis_extension_helper.sql
index 4677d81b6..b05f4f0dd 100644
--- a/extensions/postgis_extension_helper.sql
+++ b/extensions/postgis_extension_helper.sql
@@ -42,7 +42,7 @@ BEGIN
 					LEFT JOIN pg_catalog.pg_proc AS proc ON proc.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_type AS typ ON typ.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_class As cd ON cd.oid OPERATOR(pg_catalog.=) d.objid
-					LEFT JOIN pg_operator As op ON op.oid OPERATOR(pg_catalog.=) d.objid
+					LEFT JOIN pg_catalog.pg_operator As op ON op.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_cast AS ca ON ca.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_type AS cs ON ca.castsource OPERATOR(pg_catalog.=) cs.oid
 					LEFT JOIN pg_catalog.pg_type AS ct ON ca.casttarget OPERATOR(pg_catalog.=) ct.oid
@@ -58,7 +58,7 @@ BEGIN
 					LEFT JOIN pg_catalog.pg_proc AS proc ON proc.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_type AS typ ON typ.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_class As cd ON cd.oid OPERATOR(pg_catalog.=) d.objid
-					LEFT JOIN pg_operator As op ON op.oid OPERATOR(pg_catalog.=) d.objid
+					LEFT JOIN pg_catalog.pg_operator As op ON op.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_cast AS ca ON ca.oid OPERATOR(pg_catalog.=) d.objid
 					LEFT JOIN pg_catalog.pg_type AS cs ON ca.castsource OPERATOR(pg_catalog.=) cs.oid
 					LEFT JOIN pg_catalog.pg_type AS ct ON ca.casttarget OPERATOR(pg_catalog.=) ct.oid
@@ -71,7 +71,7 @@ BEGIN
 		LOOP
 			var_sql := var_sql OPERATOR(pg_catalog.||) var_r.remove_command OPERATOR(pg_catalog.||) ';';
 		END LOOP;
-		IF var_sql > '' THEN
+		IF var_sql OPERATOR(pg_catalog.>) '' THEN
 			EXECUTE var_sql;
 			var_result := true;
 		END IF;

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

Summary of changes:
 doc/installation.xml                    | 8 ++++----
 extensions/postgis_extension_helper.sql | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list