[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.1-17-gfce11401d

git at osgeo.org git at osgeo.org
Thu Oct 27 17:17:53 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.3 has been updated
       via  fce11401d63e156962e8ac17de2fbc557c0b2692 (commit)
      from  a8a9ec7c0e751770cb2d6b3248883c72f73f699c (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 fce11401d63e156962e8ac17de2fbc557c0b2692
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