summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_encrypt_nossl.result
diff options
context:
space:
mode:
authormonty@mishka.local <>2005-06-27 20:31:00 +0300
committermonty@mishka.local <>2005-06-27 20:31:00 +0300
commit7398252d02f9a297730bf63b6b096e4d64eaac47 (patch)
tree11c3f63ec13344e241e69b6178f65e8bd56e71b1 /mysql-test/r/func_encrypt_nossl.result
parent6db013ef86bbbe9102da4cc59a7a0a3c59f8af14 (diff)
downloadmariadb-git-7398252d02f9a297730bf63b6b096e4d64eaac47.tar.gz
Portability fixes
Fixes while reviewing new pushed code NULL as argument to encrypt/decrypt should return NULL without a warning
Diffstat (limited to 'mysql-test/r/func_encrypt_nossl.result')
-rw-r--r--mysql-test/r/func_encrypt_nossl.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/func_encrypt_nossl.result b/mysql-test/r/func_encrypt_nossl.result
index fea752f4a4a..e3ae6a5192a 100644
--- a/mysql-test/r/func_encrypt_nossl.result
+++ b/mysql-test/r/func_encrypt_nossl.result
@@ -23,6 +23,10 @@ des_encrypt("test", NULL)
NULL
Warnings:
Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
+des_encrypt(NULL, NULL)
+NULL
+Warnings:
+Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
select des_decrypt("test", 'anotherkeystr');
des_decrypt("test", 'anotherkeystr')
NULL