From 747d93f0391b16a3df335c34b3c99a10515e3eb6 Mon Sep 17 00:00:00 2001 From: Andreas Karlsson Date: Fri, 14 Feb 2025 15:13:48 +0100 Subject: [PATCH] Do not create extra database in configure-tde-server.sh The postgres database is good enough for this use. --- ci_scripts/configure-tde-server.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci_scripts/configure-tde-server.sh b/ci_scripts/configure-tde-server.sh index 6eb7b2b1384..6105b0e7a85 100644 --- a/ci_scripts/configure-tde-server.sh +++ b/ci_scripts/configure-tde-server.sh @@ -24,7 +24,6 @@ initdb -D "$PGDATA" --set shared_preload_libraries=pg_tde pg_ctl -D "$PGDATA" start -createdb setup_helper -psql setup_helper -f "$SCRIPT_DIR/tde_setup_global.sql" +psql postgres -f "$SCRIPT_DIR/tde_setup_global.sql" pg_ctl -D "$PGDATA" restart