[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-699-g011a07f17

git at osgeo.org git at osgeo.org
Fri Apr 7 14:40:52 PDT 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, master has been updated
       via  011a07f172e87dc627ccd9d92175977a01a37d22 (commit)
      from  edae2c77bcd730bfbc7b2b44f1d40038d9b545f7 (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 011a07f172e87dc627ccd9d92175977a01a37d22
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Apr 7 23:41:14 2023 +0200

    Trim trailing blanks from signature arguments
    
    Closes #5354

diff --git a/utils/create_skip_signatures.pl b/utils/create_skip_signatures.pl
index 01492d742..b3b2d9038 100644
--- a/utils/create_skip_signatures.pl
+++ b/utils/create_skip_signatures.pl
@@ -133,8 +133,9 @@ while (<>)
 
 		$line =~ m/ *([^\( ]*) *\((.*)\)/ or die "Unexpected DROP FUNCTION syntax: $origline";
 
-		my $name = lc($1);
-		my $args = lc($2);
+		my $name = $1;
+		my $args = $2;
+		$args =~ s/\s*$//; # trim trailing blanks
 
 		my @args = split('\s*,\s*', $args);
 		@args = canonicalize_args(@args);

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list