diff options
author | unknown <peter@mysql.com> | 2002-12-27 19:47:23 +0300 |
---|---|---|
committer | unknown <peter@mysql.com> | 2002-12-27 19:47:23 +0300 |
commit | 3db50925c70d3757f04d8fa0a1a9a02d471c4a47 (patch) | |
tree | 6485cac5dd20c207af3147a5cc6823cdf90b98f6 /mysql-test/t/func_crypt.test | |
parent | c917474ed23e99ccb28b1c4802acb2a821177aad (diff) | |
download | mariadb-git-3db50925c70d3757f04d8fa0a1a9a02d471c4a47.tar.gz |
SCRUM
Add optional second parameter to password() function. It can be used to force password()
to return fixed values.
mysql-test/r/func_crypt.result:
New test results
mysql-test/t/func_crypt.test:
new tests
sql/item_strfunc.cc:
Add optional second argument to password() function
sql/item_strfunc.h:
New method
sql/sql_yacc.yy:
Handling of password with 2 arguments
Diffstat (limited to 'mysql-test/t/func_crypt.test')
-rw-r--r-- | mysql-test/t/func_crypt.test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mysql-test/t/func_crypt.test b/mysql-test/t/func_crypt.test index 812bdade39f..af0ef661d06 100644 --- a/mysql-test/t/func_crypt.test +++ b/mysql-test/t/func_crypt.test @@ -1,3 +1,8 @@ select length(encrypt('foo', 'ff')) <> 0; --replace_result $1$aa$4OSUA5cjdx0RUQ08opV27/ aaqPiZY5xR5l. -select old_password('test'),length(password("1")),length(encrypt('test')),encrypt('test','aa'); + +# Test new and old password handling functions +select password("a",""), password("a",NULL), password("","a"), password(NULL,"a"); +select password("aaaaaaaaaaaaaaaa","a"), password("a","aaaaaaaaaaaaaaaa"); +select old_password('test'), length(password("1")), length(encrypt('test')), encrypt('test','aa'); +select old_password(""), old_password(NULL), password(""), password(NULL); |