From: Greg Sabino Mullane Date: Thu, 23 Jul 2009 12:13:59 +0000 (-0400) Subject: Missing space. X-Git-Tag: 2.9.5~4 X-Git-Url: http://git.postgresql.org/gitweb/stat%3Cscript%20data-cfasync=?a=commitdiff_plain;h=643e9ec47ea417c723fa7723b9d508ce641f94b6;p=check_postgres.git Missing space. --- diff --git a/check_postgres.pl b/check_postgres.pl index ca28e32f6..69e477033 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -2497,10 +2497,10 @@ FROM ( }; if (! defined $opt{include}) { - $SQL .= "WHERE sml.relpages - otta > $MINPAGES OR ipages - iotta > $MINIPAGES"; + $SQL .= " WHERE sml.relpages - otta > $MINPAGES OR ipages - iotta > $MINIPAGES"; $SQL .= " LIMIT $LIMIT"; } - $SQL .= "ORDER BY wastedbytes DESC"; + $SQL .= " ORDER BY wastedbytes DESC"; my $info = run_command($SQL);