mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 10:33:27 +08:00
Removed the PG12 specific macros and all the now, dead code. Also updated the testcases which had workarounds in place to make them compatible with PG12.
9 lines
214 B
Bash
Executable File
9 lines
214 B
Bash
Executable File
export PGOPTIONS
|
|
PGOPTIONS='--client-min-messages=warning'
|
|
|
|
${PG_BINDIR}/pg_dump -h ${PGHOST} -U dump_unprivileged dump_unprivileged > /dev/null 2>&1
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "Database dumped successfully"
|
|
fi
|