Codebase list orafce / debian/3.0.7-4
Fix test failures with PostgreSQL 9.4.1 "\set ECHO all;" was always silently interpreted as "\set ECHO none"; now psql will print a warning. Fix by using "none" explicitly. The test output was already expecting the "none" output variant. Christoph Berg 9 years ago
3 changed file(s) with 32 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 orafce (3.0.7-4) unstable; urgency=medium
1
2 * Fix test failures with PostgreSQL 9.4.1: "\set ECHO all;" was always
3 silently interpreted as "\set ECHO none"; now psql will print a warning.
4 Fix by using "none" explicitly. The test output was already expecting the
5 "none" output variant.
6
7 -- Christoph Berg <myon@debian.org> Sun, 22 Feb 2015 15:21:54 +0100
8
09 orafce (3.0.7-3) unstable; urgency=medium
110
211 * Fix invocation of orafce_sql_yyerror. Patch taken from upstream git.
0 --- a/sql/dbms_pipe_session_A.sql
1 +++ b/sql/dbms_pipe_session_A.sql
2 @@ -159,7 +159,7 @@ BEGIN
3 PERFORM dbms_pipe.send_message(pipename);
4 END; $$ LANGUAGE plpgsql;
5
6 -\set ECHO all;
7 +\set ECHO none
8
9 SELECT createImplicitPipe();
10
11 --- a/sql/dbms_pipe_session_B.sql
12 +++ b/sql/dbms_pipe_session_B.sql
13 @@ -80,7 +80,7 @@ BEGIN
14 RETURN result;
15 END; $$ LANGUAGE plpgsql;
16
17 -\set ECHO all;
18 +\set ECHO none
19
20 -- Receives messages sent via an implicit pipe
21 SELECT receiveFrom('named_pipe');
00 git-to_date-conversion
11 git-sqy_yyerror.patch
22 regress-no-alert
3 regress-echo