From 365b4e0c97d73515e81e1fce000645f489b23551 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Wed, 24 Feb 2010 17:37:49 -0500 Subject: [PATCH] Separate function args with commas in same_schema output. --- check_postgres.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/check_postgres.pl b/check_postgres.pl index e6fc9da69..90ca0da06 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -4848,6 +4848,7 @@ SQL next; } my ($schema,$name,$args,$md5,$isstrict,$retset,$volatile) = ($1,$2,$3,$4,$5,$6,$7); + $args =~ s/ /,/g; $args =~ s/(\d+)/$thing{$x}{type}{$1}/g; $args =~ s/^\s*(.*)\s*$/($1)/; $thing{$x}{functions}{"${schema}.${name}${args}"} = { -- 2.30.2