Skip to content

Commit e5cf1a8

Browse files
committed
SET autocommit no longer needed in /contrib because pg_regress.sh does
it automatically now on regression session startup.
1 parent 189c348 commit e5cf1a8

33 files changed

+2
-46
lines changed

contrib/btree_gist/expected/btree_gist.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
\set ECHO none
66
psql:btree_gist.sql:10: WARNING: ProcedureCreate: type int4key is not yet defined
77
psql:btree_gist.sql:15: WARNING: Argument type "int4key" is only a shell
8-
psql:btree_gist.sql:76: WARNING: ProcedureCreate: type tskey is not yet defined
9-
psql:btree_gist.sql:81: WARNING: Argument type "tskey" is only a shell
8+
psql:btree_gist.sql:98: WARNING: ProcedureCreate: type tskey is not yet defined
9+
psql:btree_gist.sql:103: WARNING: Argument type "tskey" is only a shell
1010
CREATE TABLE inttmp (b int4);
1111
\copy inttmp from 'data/test_btree.data'
1212
CREATE TABLE tstmp ( t timestamp without time zone );

contrib/btree_gist/sql/btree_gist.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
-- does not depend on contents of seg.sql.
44
--
55
\set ECHO none
6-
SET autocommit TO 'on';
76
\i btree_gist.sql
87
\set ECHO all
98

contrib/cube/sql/cube.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
-- does not depend on contents of cube.sql.
88
--
99
\set ECHO none
10-
SET autocommit TO 'on';
1110
\i cube.sql
1211
\set ECHO all
1312

contrib/dblink/expected/dblink.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
--
77
-- Adjust this setting to control where the objects get created.
88
SET search_path = public;
9-
SET autocommit TO 'on';
109
CREATE OR REPLACE FUNCTION conditional_drop()
1110
RETURNS text AS '
1211
DECLARE

contrib/dblink/sql/dblink.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
-- Adjust this setting to control where the objects get created.
99
SET search_path = public;
1010

11-
SET autocommit TO 'on';
12-
1311
CREATE OR REPLACE FUNCTION conditional_drop()
1412
RETURNS text AS '
1513
DECLARE

contrib/earthdistance/sql/earthdistance.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
-- does not depend on contents of earthdistance.sql or cube.sql.
88
--
99
\set ECHO none
10-
SET autocommit TO 'on';
1110
\i earthdistance.sql
1211
\set ECHO all
1312

contrib/intarray/sql/_int.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
-- does not depend on contents of seg.sql.
44
--
55
\set ECHO none
6-
SET autocommit TO 'on';
76
\i _int.sql
87
\set ECHO all
98

contrib/ltree/sql/ltree.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
\set ECHO none
2-
SET autocommit TO 'on';
3-
42
\i ltree.sql
53
\set ECHO all
64

contrib/pgcrypto/expected/blowfish.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
--
22
-- Blowfish cipher
33
--
4-
SET autocommit TO 'on';
54
-- some standard Blowfish testvalues
65
SELECT encode(encrypt(
76
decode('0000000000000000', 'hex'),

contrib/pgcrypto/expected/crypt-blowfish.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
--
22
-- crypt() and gen_salt(): bcrypt
33
--
4-
SET autocommit TO 'on';
54
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
65
crypt
76
--------------------------------------------------------------

0 commit comments

Comments
 (0)