diff options
author | Marco Boss <bossm8@bfh.ch> | 2022-04-02 13:42:00 +0200 |
---|---|---|
committer | Marco Boss <bossm8@bfh.ch> | 2022-04-02 13:42:00 +0200 |
commit | 5880a8ec4faa75e1eb5ed80dd36ae978b9a1e54f (patch) | |
tree | 69ade4ffb1fc02c8e995651d475d1e2cf3932efd /src/exchangedb/common-0001.sql | |
parent | f596b27a97dd649664f624d7f72cd52b7f56e043 (diff) |
drop functions
Diffstat (limited to 'src/exchangedb/common-0001.sql')
-rw-r--r-- | src/exchangedb/common-0001.sql | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/exchangedb/common-0001.sql b/src/exchangedb/common-0001.sql index 09698087..20fddd49 100644 --- a/src/exchangedb/common-0001.sql +++ b/src/exchangedb/common-0001.sql @@ -1583,7 +1583,7 @@ BEGIN ); EXECUTE FORMAT( - 'ALTER FOREIGN TABLE %I OWNER TO %L' + 'ALTER FOREIGN TABLE %I OWNER TO %I' ,source_table_name || '_' || shard_suffix ,local_user ); @@ -1698,7 +1698,7 @@ LANGUAGE plpgsql AS $$ BEGIN - RAISE NOTICE 'Creating server %s', remote_host; + RAISE NOTICE 'Creating server %', remote_host; EXECUTE FORMAT( 'CREATE SERVER IF NOT EXISTS %I ' @@ -1907,6 +1907,7 @@ BEGIN ,'taler-exchange-httpd' ); END LOOP; + END $$; |