1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
--- a/test/expected/plproxy_test.out
+++ b/test/expected/plproxy_test.out
@@ -413,18 +413,18 @@ as $$
$$ language plproxy;
select * from test_error3();
ERROR: public.test_error3(0): [test_part] REMOTE ERROR: function public.test_error3() does not exist at character 21
+-- error messages below contain hostname+IP in PG14+, mute here so we don't need 2^N output files
+/*
-- test invalid db
create function test_bad_db() returns int4
as $$
cluster 'badcluster';
$$ language plproxy;
select * from test_bad_db();
-ERROR: PL/Proxy function public.test_bad_db(0): [nonex_db] PQconnectPoll: FATAL: database "nonex_db" does not exist
create function test_bad_db2() returns int4
as $$
connect 'dbname=wrong_name_db host=localhost';
$$ language plproxy;
select * from test_bad_db2();
-ERROR: PL/Proxy function public.test_bad_db2(0): [wrong_name_db] PQconnectPoll: FATAL: database "wrong_name_db" does not exist
-
+*/
--- a/test/expected/plproxy_test_1.out
+++ b/test/expected/plproxy_test_1.out
@@ -413,18 +413,18 @@ as $$
$$ language plproxy;
select * from test_error3();
ERROR: public.test_error3(0): [test_part] REMOTE ERROR: function public.test_error3() does not exist at character 21
+-- error messages below contain hostname+IP in PG14+, mute here so we don't need 2^N output files
+/*
-- test invalid db
create function test_bad_db() returns int4
as $$
cluster 'badcluster';
$$ language plproxy;
select * from test_bad_db();
-ERROR: PL/Proxy function public.test_bad_db(0): [nonex_db] PQconnectPoll: FATAL: database "nonex_db" does not exist
create function test_bad_db2() returns int4
as $$
connect 'dbname=wrong_name_db host=localhost';
$$ language plproxy;
select * from test_bad_db2();
-ERROR: PL/Proxy function public.test_bad_db2(0): [wrong_name_db] PQconnectPoll: FATAL: database "wrong_name_db" does not exist
-
+*/
--- a/test/sql/plproxy_test.sql
+++ b/test/sql/plproxy_test.sql
@@ -276,6 +276,8 @@ as $$
$$ language plproxy;
select * from test_error3();
+-- error messages below contain hostname+IP in PG14+, mute here so we don't need 2^N output files
+/*
-- test invalid db
create function test_bad_db() returns int4
as $$
@@ -288,5 +290,5 @@ as $$
connect 'dbname=wrong_name_db host=localhost';
$$ language plproxy;
select * from test_bad_db2();
-
+*/
|