From 94d367000b82650e36ad2d14066bcb6a0575887e Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Thu, 15 Dec 2022 15:43:25 -0500 Subject: [PATCH] ci: add search path modif to db dump import --- docker/scripts/db-pg-import.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/scripts/db-pg-import.sh b/docker/scripts/db-pg-import.sh index 98ce4ae84..264020785 100644 --- a/docker/scripts/db-pg-import.sh +++ b/docker/scripts/db-pg-import.sh @@ -4,3 +4,4 @@ set -e dropdb -U django --if-exists ietf createdb -U django ietf pg_restore -U django -d ietf ietf.dump +psql -U django -d ietf -v ON_ERROR_STOP=1 -c '\x' -c 'ALTER USER django set search_path=ietf_utf8,django,public;'