diff options
author | Greg Sabino Mullane | 2009-06-08 15:18:15 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2009-06-08 15:18:15 +0000 |
commit | 89f47a9552e352543f52e05abd85cfc23ffa3b52 (patch) | |
tree | c6fa0ca93636a807b8d16d5d5983a5ed226a1b78 | |
parent | 54b79aeaccea0c5b1d56ff9e87bdecc60ac924a7 (diff) |
Don't show psql version unless verbosity is 2.
Needed so we don't spew it for same_schema action.
-rwxr-xr-x | check_postgres.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 84c178dcf..9ea193c60 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -809,7 +809,7 @@ our $psql_version = $1; our $psql_revision = $2; $psql_revision =~ s/\D//g; -$VERBOSE >= 1 and warn qq{psql=$PSQL version=$psql_version\n}; +$VERBOSE >= 2 and warn qq{psql=$PSQL version=$psql_version\n}; $opt{defaultdb} = $psql_version >= 7.4 ? 'postgres' : 'template1'; |