diff options
| author | Bruce Momjian | 2002-10-21 01:42:14 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2002-10-21 01:42:14 +0000 |
| commit | e5cf1a8a26933ccaab49b708b1d4a3a6a9580509 (patch) | |
| tree | 6bb8713d105b75d8249286005ba72fda14f63252 /contrib/pgcrypto/expected | |
| parent | 189c3481c447bed619c96b7801f06f75fadf8fdd (diff) | |
SET autocommit no longer needed in /contrib because pg_regress.sh does
it automatically now on regression session startup.
Diffstat (limited to 'contrib/pgcrypto/expected')
| -rw-r--r-- | contrib/pgcrypto/expected/blowfish.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/crypt-blowfish.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/crypt-des.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/crypt-md5.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/crypt-xdes.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/hmac-md5.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/hmac-sha1.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/md5.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/rijndael.out | 1 | ||||
| -rw-r--r-- | contrib/pgcrypto/expected/sha1.out | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/contrib/pgcrypto/expected/blowfish.out b/contrib/pgcrypto/expected/blowfish.out index 1f2ccd82b4a..5a13b7669cc 100644 --- a/contrib/pgcrypto/expected/blowfish.out +++ b/contrib/pgcrypto/expected/blowfish.out @@ -1,7 +1,6 @@ -- -- Blowfish cipher -- -SET autocommit TO 'on'; -- some standard Blowfish testvalues SELECT encode(encrypt( decode('0000000000000000', 'hex'), diff --git a/contrib/pgcrypto/expected/crypt-blowfish.out b/contrib/pgcrypto/expected/crypt-blowfish.out index 9b929749313..329d78f6254 100644 --- a/contrib/pgcrypto/expected/crypt-blowfish.out +++ b/contrib/pgcrypto/expected/crypt-blowfish.out @@ -1,7 +1,6 @@ -- -- crypt() and gen_salt(): bcrypt -- -SET autocommit TO 'on'; SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O'); crypt -------------------------------------------------------------- diff --git a/contrib/pgcrypto/expected/crypt-des.out b/contrib/pgcrypto/expected/crypt-des.out index 574a45bae7a..b8b605037d4 100644 --- a/contrib/pgcrypto/expected/crypt-des.out +++ b/contrib/pgcrypto/expected/crypt-des.out @@ -1,7 +1,6 @@ -- -- crypt() and gen_salt(): crypt-des -- -SET autocommit TO 'on'; SELECT crypt('', 'NB'); crypt --------------- diff --git a/contrib/pgcrypto/expected/crypt-md5.out b/contrib/pgcrypto/expected/crypt-md5.out index 545236d6542..a1c8304adcc 100644 --- a/contrib/pgcrypto/expected/crypt-md5.out +++ b/contrib/pgcrypto/expected/crypt-md5.out @@ -1,7 +1,6 @@ -- -- crypt() and gen_salt(): md5 -- -SET autocommit TO 'on'; SELECT crypt('', '$1$Szzz0yzz'); crypt ------------------------------------ diff --git a/contrib/pgcrypto/expected/crypt-xdes.out b/contrib/pgcrypto/expected/crypt-xdes.out index b2593fc16be..cdcdefb1996 100644 --- a/contrib/pgcrypto/expected/crypt-xdes.out +++ b/contrib/pgcrypto/expected/crypt-xdes.out @@ -1,7 +1,6 @@ -- -- crypt() and gen_salt(): extended des -- -SET autocommit TO 'on'; SELECT crypt('', '_J9..j2zz'); crypt ---------------------- diff --git a/contrib/pgcrypto/expected/hmac-md5.out b/contrib/pgcrypto/expected/hmac-md5.out index dedd5afe711..9eded3b933b 100644 --- a/contrib/pgcrypto/expected/hmac-md5.out +++ b/contrib/pgcrypto/expected/hmac-md5.out @@ -1,7 +1,6 @@ -- -- HMAC-MD5 -- -SET autocommit TO 'on'; SELECT encode(hmac( 'Hi There', decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'), diff --git a/contrib/pgcrypto/expected/hmac-sha1.out b/contrib/pgcrypto/expected/hmac-sha1.out index 4ccb0f101b1..d5f1cf25972 100644 --- a/contrib/pgcrypto/expected/hmac-sha1.out +++ b/contrib/pgcrypto/expected/hmac-sha1.out @@ -1,7 +1,6 @@ -- -- HMAC-MD5 -- -SET autocommit TO 'on'; SELECT encode(hmac( 'Hi There', decode('0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b', 'hex'), diff --git a/contrib/pgcrypto/expected/md5.out b/contrib/pgcrypto/expected/md5.out index 70933c9a736..e3301af45c5 100644 --- a/contrib/pgcrypto/expected/md5.out +++ b/contrib/pgcrypto/expected/md5.out @@ -1,7 +1,6 @@ -- -- MD5 message digest -- -SET autocommit TO 'on'; SELECT encode(digest('', 'md5'), 'hex'); encode ---------------------------------- diff --git a/contrib/pgcrypto/expected/rijndael.out b/contrib/pgcrypto/expected/rijndael.out index 18ade2025be..a5dc8ce6200 100644 --- a/contrib/pgcrypto/expected/rijndael.out +++ b/contrib/pgcrypto/expected/rijndael.out @@ -1,7 +1,6 @@ -- -- AES / Rijndael-128 cipher -- -SET autocommit TO 'on'; -- some standard Rijndael testvalues SELECT encode(encrypt( decode('00112233445566778899aabbccddeeff', 'hex'), diff --git a/contrib/pgcrypto/expected/sha1.out b/contrib/pgcrypto/expected/sha1.out index af86171d88e..9324d5d924f 100644 --- a/contrib/pgcrypto/expected/sha1.out +++ b/contrib/pgcrypto/expected/sha1.out @@ -1,7 +1,6 @@ -- -- SHA1 message digest -- -SET autocommit TO 'on'; SELECT encode(digest('', 'sha1'), 'hex'); encode ------------------------------------------ |
