diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-08 14:21:25 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-08 14:21:25 +0200 |
commit | 0b2c1d180ebaa5916c4eea07729acd93335633a4 (patch) | |
tree | 9a7568fbe27b47aa7ed18ae4769a7f616cf21942 /build/pgsql | |
parent | 3538672b958f19ced5c4a1f6be3571171d4ae3f7 (diff) |
Add quiet options to PostgreSQL test client driver
Diffstat (limited to 'build/pgsql')
-rwxr-xr-x | build/pgsql/pgsql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/pgsql/pgsql b/build/pgsql/pgsql index 2cc04cd..299106b 100755 --- a/build/pgsql/pgsql +++ b/build/pgsql/pgsql @@ -41,6 +41,10 @@ if [ -z "$driver" ]; then driver=psql fi +opt="--quiet $opt" + +export PGOPTIONS=--client-min-messages=warning + if [ -n "$1" ]; then exec $driver $opt <$1 else |