diff options
author | jimw@mysql.com <> | 2005-10-06 16:15:53 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-10-06 16:15:53 -0700 |
commit | 77fbc72f472467cb67397e6a3ed7dec5dab644fb (patch) | |
tree | 693fd4dac7cc4dc26e3cfcb8510751307ebd2e19 /mysql-test/t/func_crypt.test | |
parent | 52181cc810ecf3d2103d7782055c14b7157aabcb (diff) | |
download | mariadb-git-77fbc72f472467cb67397e6a3ed7dec5dab644fb.tar.gz |
Handle errors returned by system crypt() in ENCRYPT(). (Bug #13619)
Diffstat (limited to 'mysql-test/t/func_crypt.test')
-rw-r--r-- | mysql-test/t/func_crypt.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/func_crypt.test b/mysql-test/t/func_crypt.test index 5e0283feb28..cc3cdb9564d 100644 --- a/mysql-test/t/func_crypt.test +++ b/mysql-test/t/func_crypt.test @@ -49,4 +49,10 @@ select old_password(' i d k f a '); explain extended select password('idkfa '), old_password('idkfa'); +# +# Bug #13619: Crash on FreeBSD with salt like '_.' +# +--replace_column 1 # +select encrypt('1234','_.'); + # End of 4.1 tests |