comparison schema/run_tests.sh @ 1983:f9f1babe52ae

Fix area generation from multipolygon input In case the waterway axis representing a stretch intersects distinct parts of the input area, a multipolygon has to be returned. Before, an arbitrary polygon was selected due to the used function not being set-returning. In passing, consistently name respective columns in schema.
author Tom Gottfried <tom@intevation.de>
date Wed, 23 Jan 2019 16:25:43 +0100
parents 931b15be6d7f
children b2451f00f57d
comparison
equal deleted inserted replaced
1982:a7e47a9d890b 1983:f9f1babe52ae
26 # Drop test roles, add test data and run tests 26 # Drop test roles, add test data and run tests
27 psql -qXv ON_ERROR_STOP= -v -d gemma_test \ 27 psql -qXv ON_ERROR_STOP= -v -d gemma_test \
28 -c 'SET client_min_messages TO WARNING' \ 28 -c 'SET client_min_messages TO WARNING' \
29 -c "DROP ROLE IF EXISTS $TEST_ROLES" \ 29 -c "DROP ROLE IF EXISTS $TEST_ROLES" \
30 -f tap_tests_data.sql \ 30 -f tap_tests_data.sql \
31 -c 'SELECT plan(55)' \ 31 -c 'SELECT plan(56)' \
32 -f isrs_tests.sql \ 32 -f isrs_tests.sql \
33 -f auth_tests.sql \ 33 -f auth_tests.sql \
34 -f manage_users_tests.sql \ 34 -f manage_users_tests.sql \
35 -c 'SELECT * FROM finish()' 35 -c 'SELECT * FROM finish()'