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

Commit df9219c

Browse files
author
i.kartyshov
committed
Fix tests set search_path=public
1 parent e83044e commit df9219c

19 files changed

+19
-5
lines changed

expected/pathman_calamity.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE EXTENSION pg_pathman;
34
CREATE SCHEMA calamity;
45
/* call for coverage test */

expected/pathman_callbacks.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE EXTENSION pg_pathman;
34
CREATE SCHEMA callbacks;
45
/* callback #1 */

expected/pathman_domains.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE EXTENSION pg_pathman;
34
CREATE SCHEMA domains;
45
CREATE DOMAIN domains.dom_test AS numeric CHECK (value < 1200);

expected/pathman_foreign_keys.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE EXTENSION pg_pathman;
34
CREATE SCHEMA fkeys;
45
/* Check primary keys generation */

expected/pathman_interval.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE EXTENSION pg_pathman;
34
CREATE SCHEMA test_interval;
45
/* Range partitions for INT2 type */

expected/pathman_permissions.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE EXTENSION pg_pathman;
34
CREATE SCHEMA permissions;
45
CREATE ROLE user1 LOGIN;

expected/pathman_rowmarks.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* NOTE: This test behaves differenly on 9.5
44
* -------------------------------------------
55
*/
6+
SET search_path = 'public';
67
CREATE EXTENSION pg_pathman;
78
CREATE SCHEMA rowmarks;
89
CREATE TABLE rowmarks.first(id int NOT NULL);

expected/pathman_rowmarks_1.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* NOTE: This test behaves differenly on 9.5
44
* -------------------------------------------
55
*/
6+
SET search_path = 'public';
67
CREATE EXTENSION pg_pathman;
78
CREATE SCHEMA rowmarks;
89
CREATE TABLE rowmarks.first(id int NOT NULL);

expected/pathman_runtime_nodes.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE SCHEMA pathman;
34
CREATE EXTENSION pg_pathman SCHEMA pathman;
45
CREATE SCHEMA test;

expected/pathman_utility_stmt.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
\set VERBOSITY terse
2+
SET search_path = 'public';
23
CREATE EXTENSION pg_pathman;
34
/*
45
* Test COPY

sql/pathman_calamity.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\set VERBOSITY terse
2-
2+
SET search_path = 'public';
33
CREATE EXTENSION pg_pathman;
44
CREATE SCHEMA calamity;
55

sql/pathman_callbacks.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\set VERBOSITY terse
2-
2+
SET search_path = 'public';
33
CREATE EXTENSION pg_pathman;
44
CREATE SCHEMA callbacks;
55

sql/pathman_domains.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
\set VERBOSITY terse
22

3+
SET search_path = 'public';
34
CREATE EXTENSION pg_pathman;
45
CREATE SCHEMA domains;
56

sql/pathman_foreign_keys.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
\set VERBOSITY terse
22

3+
SET search_path = 'public';
34
CREATE EXTENSION pg_pathman;
45
CREATE SCHEMA fkeys;
56

sql/pathman_interval.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
\set VERBOSITY terse
22

3+
SET search_path = 'public';
34
CREATE EXTENSION pg_pathman;
45
CREATE SCHEMA test_interval;
56

sql/pathman_permissions.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
\set VERBOSITY terse
22

3+
SET search_path = 'public';
34
CREATE EXTENSION pg_pathman;
45
CREATE SCHEMA permissions;
56

sql/pathman_rowmarks.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* NOTE: This test behaves differenly on 9.5
44
* -------------------------------------------
55
*/
6-
6+
SET search_path = 'public';
77
CREATE EXTENSION pg_pathman;
88
CREATE SCHEMA rowmarks;
99

sql/pathman_runtime_nodes.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\set VERBOSITY terse
2-
2+
SET search_path = 'public';
33
CREATE SCHEMA pathman;
44
CREATE EXTENSION pg_pathman SCHEMA pathman;
55
CREATE SCHEMA test;

sql/pathman_utility_stmt.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\set VERBOSITY terse
2-
2+
SET search_path = 'public';
33
CREATE EXTENSION pg_pathman;
44

55

0 commit comments

Comments
 (0)