change destroydb -> dropdb
authorTatsuo Ishii <ishii@postgresql.org>
Wed, 21 Feb 2001 06:02:04 +0000 (06:02 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Wed, 21 Feb 2001 06:02:04 +0000 (06:02 +0000)
src/test/mb/mbregress.sh

index a1af16956e39f676b5a8b6ed1c782f0aeb041e59..e0d8363da508df65d2457f9e61ad1c6460070cd6 100644 (file)
@@ -14,6 +14,9 @@ if [ ! -d results ];then
     mkdir results
 fi
 
+dropdb unitest
+createdb -E UNICODE unitest
+
 PSQL="psql -n -e -q"
 tests="euc_jp sjis euc_kr euc_cn euc_tw big5 unicode mule_internal"
 unset PGCLIENTENCODING
@@ -32,7 +35,7 @@ do
                $PSQL euc_tw < sql/big5.sql > results/big5.out 2>&1
                unset PGCLIENTENCODING
        else
-               destroydb $i >/dev/null 2>&1
+               dropdb $i >/dev/null 2>&1
                createdb -E `echo $i | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` $i >/dev/null
                $PSQL $i < sql/${i}.sql > results/${i}.out 2>&1
        fi