From 5a1203360977bd823363641b85cdc8ebbf1caf0a Mon Sep 17 00:00:00 2001 From: Raul Marin Date: Thu, 3 Oct 2019 17:57:09 +0200 Subject: [PATCH] Adapt tests to changes --- test/extension/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/extension/test.sh b/test/extension/test.sh index 73491ec..d23b4b0 100755 --- a/test/extension/test.sh +++ b/test/extension/test.sh @@ -362,7 +362,7 @@ function test_cdb_tablemetadatatouch_fails_from_user_without_permission() { function test_cdb_tablemetadatatouch_fully_qualifies_names() { sql postgres "CREATE TABLE touch_invalidations (table_name text);" - sql postgres "create or replace function cartodb.cdb_invalidate_varnish(table_name text) returns void as \$\$ begin insert into touch_invalidations select table_name; end; \$\$ language 'plpgsql';" + sql postgres "create or replace function cartodb.cdb_invalidate_varnish(table_name text) returns void as \$\$ begin insert into public.touch_invalidations select table_name; end; \$\$ language 'plpgsql';" #default schema sql "CREATE TABLE touch_example (a int);"