mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
createdb test
|
|
psql test < .github/scripts/test_dump_restore.sql
|
|
pg_dump test -Fp > dump.sql
|
|
cat dump.sql
|
|
createdb test_restore
|
|
psql -v ON_ERROR_STOP=1 test_restore < dump.sql
|