From: Greg Date: Fri, 29 May 2009 20:44:38 +0000 (-0400) Subject: Make functions one per line X-Git-Tag: 2.9.1~30 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=215aee79b48162330531c42604e344e75321f25d;p=check_postgres.git Make functions one per line --- diff --git a/check_postgres.pl b/check_postgres.pl index 79a7277e8..ed877fbc7 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -5253,17 +5253,19 @@ sub check_same_schema { if (exists $fail{functions}) { if (exists $fail{functions}{notexist}) { if (exists $fail{functions}{notexist}{1}) { - $db->{perf} .= ' Functions on 1 but not 2: '; - $db->{perf} .= join ', ' => @{$fail{functions}{notexist}{1}}; + for my $name (@{$fail{functions}{notexist}{1}}) { + $db->{perf} .= " Function on 1 but not 2: $name "; + } } if (exists $fail{functions}{notexist}{2}) { - $db->{perf} .= ' Functions on 2 but not 1: '; - $db->{perf} .= join ', ' => @{$fail{functions}{notexist}{2}}; + for my $name (@{$fail{functions}{notexist}{2}}) { + $db->{perf} .= " Function on 2 but not 1: $name "; + } } } if (exists $fail{functions}{diffbody}) { for my $name (sort @{$fail{functions}{diffbody}}) { - $db->{perf} .= " Function body different on 1 than 2: $name"; + $db->{perf} .= " Function body different on 1 than 2: $name "; } } }