summaryrefslogtreecommitdiff
path: root/check_postgres.pl
diff options
context:
space:
mode:
authorGreg Sabino Mullane2009-07-23 12:13:59 +0000
committerGreg Sabino Mullane2009-07-23 12:13:59 +0000
commit643e9ec47ea417c723fa7723b9d508ce641f94b6 (patch)
tree3d81d26ddb8f0dd2e86d80b4f288629c01138b6f /check_postgres.pl
parenta8f12dbec020c5c998cc3fd36a8c0de55dee1f1d (diff)
Missing space.
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-xcheck_postgres.pl4
1 files changed, 2 insertions, 2 deletions
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);