mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-19 12:13:24 +08:00
- Directory structure now matches common practices - Regression tests now run with pg_regress via the PGXS infrastructure. - Unit tests do not integrate well with pg_regress and have to be run separately. - Docker functionality is separate from main Makefile. Run with `make -f docker.mk` to build and `make -f docker.mk run` to run the database in a container.
32 lines
624 B
Bash
Executable File
32 lines
624 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# To avoid pw writing, add localhost:5432:*:postgres:test to ~/.pgpass
|
|
set -u
|
|
set -e
|
|
|
|
PWD=`pwd`
|
|
DIR=`dirname $0`
|
|
|
|
POSTGRES_HOST=${POSTGRES_HOST:-localhost}
|
|
POSTGRES_USER=${POSTGRES_USER:-postgres}
|
|
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "usage: $0 nodename"
|
|
exit 1
|
|
fi
|
|
|
|
INSTALL_DB=$1
|
|
|
|
echo "Connecting to $POSTGRES_HOST as user $POSTGRES_USER and with db $INSTALL_DB"
|
|
|
|
cd $DIR
|
|
psql -U $POSTGRES_USER -h $POSTGRES_HOST -v ON_ERROR_STOP=1 <<EOF
|
|
DROP DATABASE IF EXISTS "$INSTALL_DB";
|
|
CREATE DATABASE "$INSTALL_DB";
|
|
\c "$INSTALL_DB"
|
|
CREATE EXTENSION IF NOT EXISTS iobeamdb CASCADE;
|
|
SELECT setup_main();
|
|
EOF
|
|
|
|
cd $PWD |