Suppress unneccesary message from createdb

This commit is contained in:
Tatsuo Ishii 2000-02-27 10:20:13 +00:00
parent c9ceab967c
commit 570bb30d73

View File

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# $Header: /cvsroot/pgsql/src/test/mb/mbregress.sh,v 1.3 1999/02/02 18:51:32 momjian Exp $ # $Header: /cvsroot/pgsql/src/test/mb/mbregress.sh,v 1.4 2000/02/27 10:20:13 ishii Exp $
if echo '\c' | grep -s c >/dev/null 2>&1 if echo '\c' | grep -s c >/dev/null 2>&1
then then
@ -33,7 +33,7 @@ do
unset PGCLIENTENCODING unset PGCLIENTENCODING
else else
destroydb $i >/dev/null 2>&1 destroydb $i >/dev/null 2>&1
createdb -E `echo $i|tr "[a-z]" "[A-Z]"` $i createdb -E `echo $i|tr "[a-z]" "[A-Z]"` $i >/dev/null
$PSQL $i < sql/${i}.sql > results/${i}.out 2>&1 $PSQL $i < sql/${i}.sql > results/${i}.out 2>&1
fi fi