mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 05:56:48 -04:00
28 lines
675 B
Bash
Executable file
28 lines
675 B
Bash
Executable file
#!/bin/sh
|
|
# $PostgreSQL: pgsql/src/test/bench/create.sh,v 1.6 2007/08/01 22:23:01 momjian Exp $
|
|
#
|
|
if [ ! -d $1 ]; then
|
|
echo " you must specify a valid data directory " >&2
|
|
exit
|
|
fi
|
|
if [ -d ./obj ]; then
|
|
cd ./obj
|
|
fi
|
|
|
|
echo =============== destroying old bench database... =================
|
|
echo "drop database bench" | postgres -D"$1" postgres > /dev/null
|
|
|
|
echo =============== creating new bench database... =================
|
|
echo "create database bench" | postgres -D"$1" postgres > /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo createdb failed
|
|
exit 1
|
|
fi
|
|
|
|
postgres -D${1} bench < create.sql > /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo initial database load failed
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|