-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathinstall-9.1.patch
40 lines (39 loc) · 1.62 KB
/
install-9.1.patch
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
--- sql/pgtap.sql
+++ sql/pgtap.sql
@@ -781,10 +781,6 @@
RETURN ok( TRUE, descr );
EXCEPTION WHEN OTHERS THEN
-- There should have been no exception.
- GET STACKED DIAGNOSTICS
- detail = PG_EXCEPTION_DETAIL,
- hint = PG_EXCEPTION_HINT,
- context = PG_EXCEPTION_CONTEXT;
RETURN ok( FALSE, descr ) || E'\n' || diag(
' died: ' || _error_diag(SQLSTATE, SQLERRM, detail, hint, context, schname, tabname, colname, chkname, typname)
);
@@ -6732,10 +6728,6 @@
-- Something went wrong. Record that fact.
errstate := SQLSTATE;
errmsg := SQLERRM;
- GET STACKED DIAGNOSTICS
- detail = PG_EXCEPTION_DETAIL,
- hint = PG_EXCEPTION_HINT,
- context = PG_EXCEPTION_CONTEXT;
END;
-- Always raise an exception to rollback any changes.
@@ -7203,7 +7195,6 @@
RETURN ok( true, $3 );
EXCEPTION
WHEN datatype_mismatch THEN
- GET STACKED DIAGNOSTICS err_msg = MESSAGE_TEXT;
RETURN ok( false, $3 ) || E'\n' || diag(
E' Number of columns or their types differ between the queries' ||
CASE WHEN have_rec::TEXT = want_rec::text THEN '' ELSE E':\n' ||
@@ -7357,7 +7348,6 @@
RETURN ok( false, $3 );
EXCEPTION
WHEN datatype_mismatch THEN
- GET STACKED DIAGNOSTICS err_msg = MESSAGE_TEXT;
RETURN ok( false, $3 ) || E'\n' || diag(
E' Number of columns or their types differ between the queries' ||
CASE WHEN have_rec::TEXT = want_rec::text THEN '' ELSE E':\n' ||