Create test postgres database with UTF-8

This commit is contained in:
Matthias Kuhn 2017-09-23 10:29:33 +02:00
parent 6a1973c1eb
commit ae9f263e96
No known key found for this signature in database
GPG Key ID: A0E766808764D73F

View File

@ -12,7 +12,7 @@ SCRIPTS="
"
dropdb qgis_test 2> /dev/null || true
createdb qgis_test || exit 1
createdb qgis_test -E UTF8 -T template0 || exit 1
for f in ${SCRIPTS}; do
psql -q --echo-errors -f $f qgis_test -v ON_ERROR_STOP=1
done