summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/expected/crypt-blowfish.out
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/pgcrypto/expected/crypt-blowfish.out')
-rw-r--r--contrib/pgcrypto/expected/crypt-blowfish.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/expected/crypt-blowfish.out b/contrib/pgcrypto/expected/crypt-blowfish.out
index 8a8b007181..329d78f625 100644
--- a/contrib/pgcrypto/expected/crypt-blowfish.out
+++ b/contrib/pgcrypto/expected/crypt-blowfish.out
@@ -17,7 +17,7 @@ CREATE TABLE ctest (data text, res text, salt text);
INSERT INTO ctest VALUES ('password', '', '');
UPDATE ctest SET salt = gen_salt('bf', 8);
UPDATE ctest SET res = crypt(data, salt);
-SELECT res = crypt(data, res) AS "worked"
+SELECT res = crypt(data, res) AS "worked"
FROM ctest;
worked
--------