Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Fix test pathman_join_clause set search_path=public #154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions expected/pathman_calamity.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA calamity;
/* call for coverage test */
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_callbacks.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA callbacks;
/* callback #1 */
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_domains.out
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_foreign_keys.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA fkeys;
/* Check primary keys generation */
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_interval.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA test_interval;
/* Range partitions for INT2 type */
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_join_clause.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE SCHEMA pathman;
CREATE EXTENSION pg_pathman SCHEMA pathman;
CREATE SCHEMA test;
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_permissions.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA permissions;
CREATE ROLE user1 LOGIN;
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_rowmarks.out
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_rowmarks_1.out
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_runtime_nodes.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE SCHEMA pathman;
CREATE EXTENSION pg_pathman SCHEMA pathman;
CREATE SCHEMA test;
Expand Down
1 change: 1 addition & 0 deletions expected/pathman_utility_stmt.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
\set VERBOSITY terse
SET search_path = 'public';
CREATE EXTENSION pg_pathman;
/*
* Test COPY
Expand Down
2 changes: 1 addition & 1 deletion sql/pathman_calamity.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA calamity;

Expand Down
2 changes: 1 addition & 1 deletion sql/pathman_callbacks.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA callbacks;

Expand Down
1 change: 1 addition & 0 deletions sql/pathman_domains.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA domains;

Expand Down
1 change: 1 addition & 0 deletions sql/pathman_foreign_keys.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA fkeys;

Expand Down
1 change: 1 addition & 0 deletions sql/pathman_interval.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA test_interval;

Expand Down
2 changes: 1 addition & 1 deletion sql/pathman_join_clause.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE SCHEMA pathman;
CREATE EXTENSION pg_pathman SCHEMA pathman;
CREATE SCHEMA test;
Expand Down
1 change: 1 addition & 0 deletions sql/pathman_permissions.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA permissions;

Expand Down
2 changes: 1 addition & 1 deletion sql/pathman_rowmarks.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* NOTE: This test behaves differenly on 9.5
* -------------------------------------------
*/

SET search_path = 'public';
CREATE EXTENSION pg_pathman;
CREATE SCHEMA rowmarks;

Expand Down
2 changes: 1 addition & 1 deletion sql/pathman_runtime_nodes.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE SCHEMA pathman;
CREATE EXTENSION pg_pathman SCHEMA pathman;
CREATE SCHEMA test;
Expand Down
2 changes: 1 addition & 1 deletion sql/pathman_utility_stmt.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
\set VERBOSITY terse

SET search_path = 'public';
CREATE EXTENSION pg_pathman;


Expand Down