From 0aaddc17697b26343859c4cdaf35c419c8446af9 Mon Sep 17 00:00:00 2001 From: Jeremy Kidwell Date: Sun, 23 Feb 2020 06:47:39 +0000 Subject: [PATCH] Fixing typo Pretty sure there should be a closing ` here --- setup_fdw.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_fdw.sh b/setup_fdw.sh index 3a3b4ba..cd2e61b 100644 --- a/setup_fdw.sh +++ b/setup_fdw.sh @@ -1,6 +1,6 @@ # Create foreign data wrapper to another postgresql database # -ORGANIZATION_DB=`echo "SELECT database_name FROM users WHERE username='admin4example'" | psql -U postgres -t carto_db_production +ORGANIZATION_DB=`echo "SELECT database_name FROM users WHERE username='admin4example'" | psql -U postgres -t carto_db_production` echo "CREATE EXTENSION postgres_fdw;" | psql -U postgres $ORGANIZATION_DB echo "CREATE SCHEMA gps;" | psql -U postgres $ORGANIZATION_DB