diff --git a/expected/pathman_calamity.out b/expected/pathman_calamity.out index 0e0cbed7..3e87884c 100644 --- a/expected/pathman_calamity.out +++ b/expected/pathman_calamity.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA calamity; /* call for coverage test */ diff --git a/expected/pathman_callbacks.out b/expected/pathman_callbacks.out index aaa9f82b..3eea2049 100644 --- a/expected/pathman_callbacks.out +++ b/expected/pathman_callbacks.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA callbacks; /* callback #1 */ diff --git a/expected/pathman_domains.out b/expected/pathman_domains.out index f78a73dc..e5e882c0 100644 --- a/expected/pathman_domains.out +++ b/expected/pathman_domains.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA domains; CREATE DOMAIN domains.dom_test AS numeric CHECK (value < 1200); diff --git a/expected/pathman_foreign_keys.out b/expected/pathman_foreign_keys.out index 00462c3d..2ff12279 100644 --- a/expected/pathman_foreign_keys.out +++ b/expected/pathman_foreign_keys.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA fkeys; /* Check primary keys generation */ diff --git a/expected/pathman_interval.out b/expected/pathman_interval.out index 1bcd8216..72dc4e01 100644 --- a/expected/pathman_interval.out +++ b/expected/pathman_interval.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA test_interval; /* Range partitions for INT2 type */ diff --git a/expected/pathman_join_clause.out b/expected/pathman_join_clause.out index 7d9acdea..25d5cba9 100644 --- a/expected/pathman_join_clause.out +++ b/expected/pathman_join_clause.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE SCHEMA pathman; CREATE EXTENSION pg_pathman SCHEMA pathman; CREATE SCHEMA test; diff --git a/expected/pathman_permissions.out b/expected/pathman_permissions.out index 4700f8bf..e329a9ec 100644 --- a/expected/pathman_permissions.out +++ b/expected/pathman_permissions.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA permissions; CREATE ROLE user1 LOGIN; diff --git a/expected/pathman_rowmarks.out b/expected/pathman_rowmarks.out index 4c399e85..0bf1078a 100644 --- a/expected/pathman_rowmarks.out +++ b/expected/pathman_rowmarks.out @@ -3,6 +3,7 @@ * NOTE: This test behaves differenly on 9.5 * ------------------------------------------- */ +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA rowmarks; CREATE TABLE rowmarks.first(id int NOT NULL); diff --git a/expected/pathman_rowmarks_1.out b/expected/pathman_rowmarks_1.out index 28d3f27d..d072cde9 100644 --- a/expected/pathman_rowmarks_1.out +++ b/expected/pathman_rowmarks_1.out @@ -3,6 +3,7 @@ * NOTE: This test behaves differenly on 9.5 * ------------------------------------------- */ +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA rowmarks; CREATE TABLE rowmarks.first(id int NOT NULL); diff --git a/expected/pathman_runtime_nodes.out b/expected/pathman_runtime_nodes.out index d49343b9..f364cfb4 100644 --- a/expected/pathman_runtime_nodes.out +++ b/expected/pathman_runtime_nodes.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE SCHEMA pathman; CREATE EXTENSION pg_pathman SCHEMA pathman; CREATE SCHEMA test; diff --git a/expected/pathman_utility_stmt.out b/expected/pathman_utility_stmt.out index 37149f1e..4cc4d493 100644 --- a/expected/pathman_utility_stmt.out +++ b/expected/pathman_utility_stmt.out @@ -1,4 +1,5 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; /* * Test COPY diff --git a/sql/pathman_calamity.sql b/sql/pathman_calamity.sql index ed1b7b82..ad29a705 100644 --- a/sql/pathman_calamity.sql +++ b/sql/pathman_calamity.sql @@ -1,5 +1,5 @@ \set VERBOSITY terse - +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA calamity; diff --git a/sql/pathman_callbacks.sql b/sql/pathman_callbacks.sql index f435e1c7..65b729d9 100644 --- a/sql/pathman_callbacks.sql +++ b/sql/pathman_callbacks.sql @@ -1,5 +1,5 @@ \set VERBOSITY terse - +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA callbacks; diff --git a/sql/pathman_domains.sql b/sql/pathman_domains.sql index f6ee7076..4793c6f8 100644 --- a/sql/pathman_domains.sql +++ b/sql/pathman_domains.sql @@ -1,5 +1,6 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA domains; diff --git a/sql/pathman_foreign_keys.sql b/sql/pathman_foreign_keys.sql index 392b3a7a..1ec1b766 100644 --- a/sql/pathman_foreign_keys.sql +++ b/sql/pathman_foreign_keys.sql @@ -1,5 +1,6 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA fkeys; diff --git a/sql/pathman_interval.sql b/sql/pathman_interval.sql index 59393ca4..f2933ab0 100644 --- a/sql/pathman_interval.sql +++ b/sql/pathman_interval.sql @@ -1,5 +1,6 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA test_interval; diff --git a/sql/pathman_join_clause.sql b/sql/pathman_join_clause.sql index 90287201..c578d361 100644 --- a/sql/pathman_join_clause.sql +++ b/sql/pathman_join_clause.sql @@ -1,5 +1,5 @@ \set VERBOSITY terse - +SET search_path = 'public'; CREATE SCHEMA pathman; CREATE EXTENSION pg_pathman SCHEMA pathman; CREATE SCHEMA test; diff --git a/sql/pathman_permissions.sql b/sql/pathman_permissions.sql index 43bf6ca6..2dd22fc0 100644 --- a/sql/pathman_permissions.sql +++ b/sql/pathman_permissions.sql @@ -1,5 +1,6 @@ \set VERBOSITY terse +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA permissions; diff --git a/sql/pathman_rowmarks.sql b/sql/pathman_rowmarks.sql index 9864b8b9..aa365544 100644 --- a/sql/pathman_rowmarks.sql +++ b/sql/pathman_rowmarks.sql @@ -3,7 +3,7 @@ * NOTE: This test behaves differenly on 9.5 * ------------------------------------------- */ - +SET search_path = 'public'; CREATE EXTENSION pg_pathman; CREATE SCHEMA rowmarks; diff --git a/sql/pathman_runtime_nodes.sql b/sql/pathman_runtime_nodes.sql index b54c7571..e0b50e9b 100644 --- a/sql/pathman_runtime_nodes.sql +++ b/sql/pathman_runtime_nodes.sql @@ -1,5 +1,5 @@ \set VERBOSITY terse - +SET search_path = 'public'; CREATE SCHEMA pathman; CREATE EXTENSION pg_pathman SCHEMA pathman; CREATE SCHEMA test; diff --git a/sql/pathman_utility_stmt.sql b/sql/pathman_utility_stmt.sql index c7d25051..31232ce1 100644 --- a/sql/pathman_utility_stmt.sql +++ b/sql/pathman_utility_stmt.sql @@ -1,5 +1,5 @@ \set VERBOSITY terse - +SET search_path = 'public'; CREATE EXTENSION pg_pathman;