diff options
author | Greg Sabino Mullane | 2010-02-24 22:37:49 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2010-02-24 22:37:49 +0000 |
commit | 365b4e0c97d73515e81e1fce000645f489b23551 (patch) | |
tree | 4ec58d26d3ec25c7b3acb4b194d71ef20b1ed611 /check_postgres.pl | |
parent | 86196815ac119a33b7748dbc733459f761a687fe (diff) |
Separate function args with commas in same_schema output.
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 1 |
1 files changed, 1 insertions, 0 deletions
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}"} = { |