[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-596-g03ed1f3a2

git at osgeo.org git at osgeo.org
Wed Feb 23 10:36:54 PST 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  03ed1f3a27760f540a7ca486f68ee9550bf602e0 (commit)
      from  c4380f19d64b7af94eb66d5f7418da1e8b0b3603 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 03ed1f3a27760f540a7ca486f68ee9550bf602e0
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Feb 23 19:36:25 2022 +0100

    Error out from multiprocess topology test if target db does not exist

diff --git a/topology/test/check_multiprocess_topology_population.sh b/topology/test/check_multiprocess_topology_population.sh
index 51683b66a..087ca146e 100755
--- a/topology/test/check_multiprocess_topology_population.sh
+++ b/topology/test/check_multiprocess_topology_population.sh
@@ -23,7 +23,7 @@ cleanup() {
 trap cleanup EXIT
 
 #psql ${PSQL_OPTS} -c "SELECT NULL FROM DropTopology('mt_topo');" | grep -v '^$'
-psql ${PSQL_OPTS} -c "SELECT NULL FROM CreateTopology('mt_topo')" > /dev/null
+psql ${PSQL_OPTS} -c "SELECT NULL FROM CreateTopology('mt_topo')" > /dev/null || exit 1
 
 # $RANDOM: random integer between 0 and 32767
 for x in `seq 0 10 40`; do

-----------------------------------------------------------------------

Summary of changes:
 topology/test/check_multiprocess_topology_population.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list