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

Commite5cf1a8

Browse files
committed
SET autocommit no longer needed in /contrib because pg_regress.sh does
it automatically now on regression session startup.
1 parent189c348 commite5cf1a8

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
\ibtree_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
\icube.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 REPLACEFUNCTIONconditional_drop()
1412
RETURNStextAS'
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
\iearthdistance.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
\iltree.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
--------------------------------------------------------------

‎contrib/pgcrypto/expected/crypt-des.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(): crypt-des
33
--
4-
SET autocommit TO 'on';
54
SELECT crypt('', 'NB');
65
crypt
76
---------------

‎contrib/pgcrypto/expected/crypt-md5.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(): md5
33
--
4-
SET autocommit TO 'on';
54
SELECT crypt('', '$1$Szzz0yzz');
65
crypt
76
------------------------------------

‎contrib/pgcrypto/expected/crypt-xdes.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(): extended des
33
--
4-
SET autocommit TO 'on';
54
SELECT crypt('', '_J9..j2zz');
65
crypt
76
----------------------

‎contrib/pgcrypto/expected/hmac-md5.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
--
22
-- HMAC-MD5
33
--
4-
SET autocommit TO 'on';
54
SELECT encode(hmac(
65
'Hi There',
76
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),

‎contrib/pgcrypto/expected/hmac-sha1.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
--
22
-- HMAC-MD5
33
--
4-
SET autocommit TO 'on';
54
SELECT encode(hmac(
65
'Hi There',
76
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),

‎contrib/pgcrypto/expected/md5.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
--
22
-- MD5 message digest
33
--
4-
SET autocommit TO 'on';
54
SELECT encode(digest('', 'md5'), 'hex');
65
encode
76
----------------------------------

‎contrib/pgcrypto/expected/rijndael.out

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

‎contrib/pgcrypto/expected/sha1.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
--
22
-- SHA1 message digest
33
--
4-
SET autocommit TO 'on';
54
SELECT encode(digest('', 'sha1'), 'hex');
65
encode
76
------------------------------------------

‎contrib/pgcrypto/sql/blowfish.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- Blowfish cipher
33
--
44

5-
SET autocommit TO'on';
6-
75
-- some standard Blowfish testvalues
86
SELECT encode(encrypt(
97
decode('0000000000000000','hex'),

‎contrib/pgcrypto/sql/crypt-blowfish.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- crypt() and gen_salt(): bcrypt
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT crypt('','$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
86

97
SELECT crypt('foox','$2a$06$RQiOJ.3ELirrXwxIZY8q0O');

‎contrib/pgcrypto/sql/crypt-des.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- crypt() and gen_salt(): crypt-des
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT crypt('','NB');
86

97
SELECT crypt('foox','NB');

‎contrib/pgcrypto/sql/crypt-md5.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- crypt() and gen_salt(): md5
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT crypt('','$1$Szzz0yzz');
86

97
SELECT crypt('foox','$1$Szzz0yzz');

‎contrib/pgcrypto/sql/crypt-xdes.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- crypt() and gen_salt(): extended des
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT crypt('','_J9..j2zz');
86

97
SELECT crypt('foox','_J9..j2zz');

‎contrib/pgcrypto/sql/hmac-md5.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- HMAC-MD5
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT encode(hmac(
86
'Hi There',
97
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b','hex'),

‎contrib/pgcrypto/sql/hmac-sha1.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- HMAC-MD5
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT encode(hmac(
86
'Hi There',
97
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b','hex'),

‎contrib/pgcrypto/sql/init.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
--
44

55
\set ECHO none
6-
SET autocommit TO'on';
76
\ipgcrypto.sql
87
\set ECHO all
98

‎contrib/pgcrypto/sql/md5.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- MD5 message digest
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT encode(digest('','md5'),'hex');
86
SELECT encode(digest('a','md5'),'hex');
97
SELECT encode(digest('abc','md5'),'hex');

‎contrib/pgcrypto/sql/rijndael.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- AES / Rijndael-128 cipher
33
--
44

5-
SET autocommit TO'on';
6-
75
-- some standard Rijndael testvalues
86
SELECT encode(encrypt(
97
decode('00112233445566778899aabbccddeeff','hex'),

‎contrib/pgcrypto/sql/sha1.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
-- SHA1 message digest
33
--
44

5-
SET autocommit TO'on';
6-
75
SELECT encode(digest('','sha1'),'hex');
86
SELECT encode(digest('a','sha1'),'hex');
97
SELECT encode(digest('abc','sha1'),'hex');

‎contrib/rtree_gist/sql/rtree_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
\irtree_gist.sql
87
\set ECHO all
98

‎contrib/seg/sql/seg.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 seg.sql.
88
--
99
\set ECHO none
10-
SET autocommit TO'on';
1110
\iseg.sql
1211
\set ECHO all
1312

‎contrib/tablefunc/sql/tablefunc.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 tablefunc.sql.
44
--
55
\set ECHO none
6-
SET autocommit TO'on';
76
\itablefunc.sql
87
\set ECHO all
98

‎contrib/tsearch/sql/tsearch.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
\itsearch.sql
87
\set ECHO all
98

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp