Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdf9219c

Browse files
author
i.kartyshov
committed
Fix tests set search_path=public
1 parente83044e commitdf9219c

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
CREATESCHEMAcalamity;
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
CREATESCHEMAcallbacks;
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
CREATESCHEMAdomains;
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
CREATESCHEMAfkeys;
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
CREATESCHEMAtest_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
CREATESCHEMApermissions;
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
CREATESCHEMArowmarks;
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
CREATESCHEMApathman;
44
CREATE EXTENSION pg_pathman SCHEMA pathman;
55
CREATESCHEMAtest;

‎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)

[8]ページ先頭

©2009-2025 Movatter.jp