[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-82-g963aad2

git at osgeo.org git at osgeo.org
Tue Oct 6 03:20:57 PDT 2020


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  963aad2943924702e03b180a82bd1412c0d5880e (commit)
      from  33db86ac377e060f59c353ab7b44703ebfbf90aa (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 963aad2943924702e03b180a82bd1412c0d5880e
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Oct 6 12:20:49 2020 +0200

    Fix format string

diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 2389b42..226fdff 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -2937,12 +2937,12 @@ BEGIN
 				THEN
 					sql := format(
 					          'CREATE EXTENSION %1$I SCHEMA %2$I VERSION unpackaged;'
-					          'ALTER EXTENSION %1%I UPDATE TO %3$I',
+					          'ALTER EXTENSION %1$I UPDATE TO %3$I',
 					          rec.name, var_schema, rec.default_version);
 				ELSE
 					sql := format(
 					         'CREATE EXTENSION %1$I VERSION unpackaged;'
-					         'ALTER EXTENSION %1%I UPDATE TO %2$I',
+					         'ALTER EXTENSION %1$I UPDATE TO %2$I',
 					         rec.name, rec.default_version);
 				END IF;
 				RAISE NOTICE 'Packaging extension %', rec.name;

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

Summary of changes:
 postgis/postgis.sql.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list