diff options
author | Greg Sabino Mullane | 2009-04-28 18:41:01 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2009-04-28 18:41:01 +0000 |
commit | 3822bcedd0980879ae7f0bda686ea472a1af3adb (patch) | |
tree | 1ef9c0a83a08376ea733b7f688c5fb278839db0c /check_postgres.pl | |
parent | f6119465dda97ef8ed45fbd4b3569003cf259149 (diff) |
Minor tweak.
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 3855cdc8d..8189b37dd 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -2842,7 +2842,7 @@ sub check_fsm_pages { qq{ ELSE interestingpages/16 END) AS sumrequests,\n}. qq{ COUNT(relfilenode) AS numrels, 16 AS chunkpages FROM pg_freespacemap_relations) AS foo) AS foo2,\n}. q{ (SELECT setting::NUMERIC AS maxx FROM pg_settings WHERE name = 'max_fsm_pages') AS foo3}; - my $SQLNOOP = qq{SELECT 'FAIL'}; + my $SQLNOOP = q{SELECT 'FAIL'}; my $info = run_command($SQL, { version => [ ">8.3 $SQLNOOP" ] } ); @@ -2902,7 +2902,7 @@ sub check_fsm_relations { qq{FROM (SELECT\n}. qq{ (SELECT COUNT(*) FROM pg_freespacemap_relations) AS cur,\n}. qq{ (SELECT setting::NUMERIC FROM pg_settings WHERE name='max_fsm_relations') AS maxx) x\n}; - my $SQLNOOP = qq{SELECT 'FAIL'}; + my $SQLNOOP = q{SELECT 'FAIL'}; my $info = run_command($SQL, { version => [ ">8.3 $SQLNOOP" ] } ); |