projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80e3398
)
change destroydb -> dropdb
author
Tatsuo Ishii
<ishii@postgresql.org>
Wed, 21 Feb 2001 06:02:04 +0000
(06:02 +0000)
committer
Tatsuo Ishii
<ishii@postgresql.org>
Wed, 21 Feb 2001 06:02:04 +0000
(06:02 +0000)
src/test/mb/mbregress.sh
patch
|
blob
|
blame
|
history
diff --git
a/src/test/mb/mbregress.sh
b/src/test/mb/mbregress.sh
index a1af16956e39f676b5a8b6ed1c782f0aeb041e59..e0d8363da508df65d2457f9e61ad1c6460070cd6 100644
(file)
--- a/
src/test/mb/mbregress.sh
+++ b/
src/test/mb/mbregress.sh
@@
-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
- d
estroy
db $i >/dev/null 2>&1
+ d
rop
db $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