Skip to content
Snippets Groups Projects
Commit f4db5c3c authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Update regression for new dropdb command.

parent a27542c3
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.32 1999/11/19 18:51:49 wieck Exp $
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.33 1999/12/10 00:48:32 momjian Exp $
#
if [ $# -eq 0 ]
then
......@@ -47,8 +47,8 @@ echo " ports@postgresql.org"
echo "See regress/README for more information."
echo ""
echo "=============== destroying old regression database... ================="
destroydb $HOST regression
echo "=============== dropping old regression database... ================="
dropdb $HOST regression
echo "=============== creating new regression database... ================="
if [ -n "$MULTIBYTE" ];then
......@@ -119,17 +119,17 @@ then
echo Skipping clearing and deletion of the regression database
else
echo "=============== clearing regression database... ================="
$FRONTEND regression < destroy.sql
$FRONTEND regression < drop.sql
if [ $? -ne 0 ]; then
echo the destroy script has an error
echo the drop script has an error
exit 1
fi
exit 0
echo "=============== destroying regression database... ================="
destroydb regression
echo "=============== dropping regression database... ================="
dropdb regression
if [ $? -ne 0 ]; then
echo destroydb failed
echo dropdb failed
exit 1
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment