[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-293-g4e9e8c5f5
git at osgeo.org
git at osgeo.org
Thu Oct 27 17:13:36 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, master has been updated
via 4e9e8c5f551f0c136f5975a3823c46412a4de361 (commit)
from b160678fec05658f61cb4627cf3909fdb69be42c (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 4e9e8c5f551f0c136f5975a3823c46412a4de361
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