[SCM] PostGIS branch stable-3.4 updated. 3.4.1-20-g1123ea818

git at osgeo.org git at osgeo.org
Wed Dec 27 03:45:12 PST 2023


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.4 has been updated
       via  1123ea818d36f69153c76b9f57fcc70935dd0494 (commit)
      from  f73b0aec3ffdf39115228695706e62d1db9dc57d (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 1123ea818d36f69153c76b9f57fcc70935dd0494
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Dec 27 12:45:19 2023 +0100

    Add configure-pgextwlist.sql regression test hook
    
    This was needed since previous commit
    f73b0aec3ffdf39115228695706e62d1db9dc57d

diff --git a/regress/hooks/configure-pgextwlist.sql b/regress/hooks/configure-pgextwlist.sql
new file mode 100644
index 000000000..1e1b756e5
--- /dev/null
+++ b/regress/hooks/configure-pgextwlist.sql
@@ -0,0 +1,21 @@
+DO $SANDBOX$
+BEGIN
+
+	EXECUTE format(
+		$$
+			ALTER DATABASE %I
+			SET session_preload_libraries = 'pgextwlist.so'
+		$$,
+		current_database()
+	);
+
+	EXECUTE format(
+		$$
+			ALTER DATABASE %I
+			SET extwlist.extensions='postgis,postgis_raster,postgis_topology,postgis_sfcgal,address_standardizer,postgis_tiger_geocoder'
+		$$,
+		current_database()
+	);
+
+END;
+$SANDBOX$ LANGUAGE 'plpgsql';

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

Summary of changes:
 regress/hooks/configure-pgextwlist.sql | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 regress/hooks/configure-pgextwlist.sql


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list