From: Greg Sabino Mullane Date: Thu, 12 Mar 2009 15:06:44 +0000 (-0400) Subject: Fix dbstats typo - thanks to Andras Fabian for finding this. X-Git-Tag: 2.9.0~145 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=d6987409263e0bcea2cb2f4126bedd82244f17ff;p=check_postgres.git Fix dbstats typo - thanks to Andras Fabian for finding this. --- diff --git a/check_postgres.pl b/check_postgres.pl index 6306ec4e7..33f6a6fb1 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -4373,7 +4373,7 @@ sub show_dbstats { } next SLURP unless $keepit; } - my $template = "backends:%d commits:%d rollbacks:%d read:%d hit:%d ret:%d fetch:%d ins:%d del:%d"; + my $template = "backends:%d commits:%d rollbacks:%d read:%d hit:%d ret:%d fetch:%d ins:%d upd: %d del:%d"; my $msg = sprintf "$template", @stats, (0,0,0,0); print "$msg dbname:$dbname\n"; } @@ -5663,7 +5663,7 @@ Items not specifically attributed are by Greg Sabino Mullane. =over 4 -=item B (February ??, 2009) +=item B (March ??, 2009) Added the 'disabled_triggers' check. Added internationalization support. @@ -5671,6 +5671,7 @@ Items not specifically attributed are by Greg Sabino Mullane. Make the backends search return ok if no matches due to inclusion rules, per report by Guillaume Lelarge Begin adding comprehensive unit tests. + Fix missing 'upd' field in show_dbstats (Andras Fabian) =item B (February 10, 2009)