mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-19 20:00:51 +08:00
SET autocommit no longer needed in /contrib because pg_regress.sh does
it automatically now on regression session startup.
This commit is contained in:
parent
189c3481c4
commit
e5cf1a8a26
contrib
btree_gist
cube/sql
dblink
earthdistance/sql
intarray/sql
ltree/sql
pgcrypto
expected
blowfish.outcrypt-blowfish.outcrypt-des.outcrypt-md5.outcrypt-xdes.outhmac-md5.outhmac-sha1.outmd5.outrijndael.outsha1.out
sql
rtree_gist/sql
seg/sql
tablefunc/sql
tsearch/sql
@ -5,8 +5,8 @@
|
||||
\set ECHO none
|
||||
psql:btree_gist.sql:10: WARNING: ProcedureCreate: type int4key is not yet defined
|
||||
psql:btree_gist.sql:15: WARNING: Argument type "int4key" is only a shell
|
||||
psql:btree_gist.sql:76: WARNING: ProcedureCreate: type tskey is not yet defined
|
||||
psql:btree_gist.sql:81: WARNING: Argument type "tskey" is only a shell
|
||||
psql:btree_gist.sql:98: WARNING: ProcedureCreate: type tskey is not yet defined
|
||||
psql:btree_gist.sql:103: WARNING: Argument type "tskey" is only a shell
|
||||
CREATE TABLE inttmp (b int4);
|
||||
\copy inttmp from 'data/test_btree.data'
|
||||
CREATE TABLE tstmp ( t timestamp without time zone );
|
||||
|
@ -3,7 +3,6 @@
|
||||
-- does not depend on contents of seg.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i btree_gist.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -7,7 +7,6 @@
|
||||
-- does not depend on contents of cube.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i cube.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -6,7 +6,6 @@
|
||||
--
|
||||
-- Adjust this setting to control where the objects get created.
|
||||
SET search_path = public;
|
||||
SET autocommit TO 'on';
|
||||
CREATE OR REPLACE FUNCTION conditional_drop()
|
||||
RETURNS text AS '
|
||||
DECLARE
|
||||
|
@ -8,8 +8,6 @@
|
||||
-- Adjust this setting to control where the objects get created.
|
||||
SET search_path = public;
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
CREATE OR REPLACE FUNCTION conditional_drop()
|
||||
RETURNS text AS '
|
||||
DECLARE
|
||||
|
@ -7,7 +7,6 @@
|
||||
-- does not depend on contents of earthdistance.sql or cube.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i earthdistance.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -3,7 +3,6 @@
|
||||
-- does not depend on contents of seg.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i _int.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -1,6 +1,4 @@
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
|
||||
\i ltree.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- Blowfish cipher
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
-- some standard Blowfish testvalues
|
||||
SELECT encode(encrypt(
|
||||
decode('0000000000000000', 'hex'),
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- crypt() and gen_salt(): bcrypt
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
|
||||
crypt
|
||||
--------------------------------------------------------------
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- crypt() and gen_salt(): crypt-des
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT crypt('', 'NB');
|
||||
crypt
|
||||
---------------
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- crypt() and gen_salt(): md5
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT crypt('', '$1$Szzz0yzz');
|
||||
crypt
|
||||
------------------------------------
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- crypt() and gen_salt(): extended des
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT crypt('', '_J9..j2zz');
|
||||
crypt
|
||||
----------------------
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- HMAC-MD5
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT encode(hmac(
|
||||
'Hi There',
|
||||
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- HMAC-MD5
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT encode(hmac(
|
||||
'Hi There',
|
||||
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- MD5 message digest
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT encode(digest('', 'md5'), 'hex');
|
||||
encode
|
||||
----------------------------------
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- AES / Rijndael-128 cipher
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
-- some standard Rijndael testvalues
|
||||
SELECT encode(encrypt(
|
||||
decode('00112233445566778899aabbccddeeff', 'hex'),
|
||||
|
@ -1,7 +1,6 @@
|
||||
--
|
||||
-- SHA1 message digest
|
||||
--
|
||||
SET autocommit TO 'on';
|
||||
SELECT encode(digest('', 'sha1'), 'hex');
|
||||
encode
|
||||
------------------------------------------
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- Blowfish cipher
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
-- some standard Blowfish testvalues
|
||||
SELECT encode(encrypt(
|
||||
decode('0000000000000000', 'hex'),
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- crypt() and gen_salt(): bcrypt
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
|
||||
|
||||
SELECT crypt('foox', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- crypt() and gen_salt(): crypt-des
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT crypt('', 'NB');
|
||||
|
||||
SELECT crypt('foox', 'NB');
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- crypt() and gen_salt(): md5
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT crypt('', '$1$Szzz0yzz');
|
||||
|
||||
SELECT crypt('foox', '$1$Szzz0yzz');
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- crypt() and gen_salt(): extended des
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT crypt('', '_J9..j2zz');
|
||||
|
||||
SELECT crypt('foox', '_J9..j2zz');
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- HMAC-MD5
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT encode(hmac(
|
||||
'Hi There',
|
||||
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- HMAC-MD5
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT encode(hmac(
|
||||
'Hi There',
|
||||
decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'),
|
||||
|
@ -3,7 +3,6 @@
|
||||
--
|
||||
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i pgcrypto.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- MD5 message digest
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT encode(digest('', 'md5'), 'hex');
|
||||
SELECT encode(digest('a', 'md5'), 'hex');
|
||||
SELECT encode(digest('abc', 'md5'), 'hex');
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- AES / Rijndael-128 cipher
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
-- some standard Rijndael testvalues
|
||||
SELECT encode(encrypt(
|
||||
decode('00112233445566778899aabbccddeeff', 'hex'),
|
||||
|
@ -2,8 +2,6 @@
|
||||
-- SHA1 message digest
|
||||
--
|
||||
|
||||
SET autocommit TO 'on';
|
||||
|
||||
SELECT encode(digest('', 'sha1'), 'hex');
|
||||
SELECT encode(digest('a', 'sha1'), 'hex');
|
||||
SELECT encode(digest('abc', 'sha1'), 'hex');
|
||||
|
@ -3,7 +3,6 @@
|
||||
-- does not depend on contents of seg.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i rtree_gist.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -7,7 +7,6 @@
|
||||
-- does not depend on contents of seg.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i seg.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -3,7 +3,6 @@
|
||||
-- does not depend on contents of tablefunc.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i tablefunc.sql
|
||||
\set ECHO all
|
||||
|
||||
|
@ -3,7 +3,6 @@
|
||||
-- does not depend on contents of seg.sql.
|
||||
--
|
||||
\set ECHO none
|
||||
SET autocommit TO 'on';
|
||||
\i tsearch.sql
|
||||
\set ECHO all
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user