[postgis-tickets] [SCM] PostGIS branch stable-3.1 updated. 3.1.7-9-gb5bf4267b

git at osgeo.org git at osgeo.org
Thu Oct 27 17:24:28 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  b5bf4267be4001647ed949561b52d6f72c1eb6b7 (commit)
      from  3442f4d541e92d24b9dcde90e832a2c4933228de (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 b5bf4267be4001647ed949561b52d6f72c1eb6b7
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Oct 28 02:12:14 2022 +0200

    Fix syntax of ownership check in extension packager
    
    "desc" is a reserved word

diff --git a/utils/create_unpackaged.pl b/utils/create_unpackaged.pl
index a3f4af01e..b82d3b989 100755
--- a/utils/create_unpackaged.pl
+++ b/utils/create_unpackaged.pl
@@ -339,8 +339,7 @@ BEGIN
 		SELECT
 			p.oid,
 			p.proowner,
-			e.extowner,
-			pg_catalog.pg_describe_object(d.classid, d.objid, 0) desc
+			e.extowner
 		FROM pg_catalog.pg_depend AS d
 			INNER JOIN pg_catalog.pg_extension AS e ON (d.refobjid = e.oid)
 			INNER JOIN pg_catalog.pg_proc AS p ON (d.objid = p.oid)

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

Summary of changes:
 utils/create_unpackaged.pl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list