summaryrefslogtreecommitdiff
path: root/mysql-test/t/grant4.test
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2014-11-23 20:30:56 +0100
committerSergei Golubchik <serg@mariadb.org>2014-12-04 10:41:53 +0100
commitf5722f5851bb4603040d5010aeeb98244cc2789f (patch)
tree31656aab4df27d339103cfaf8574bc6982a563bd /mysql-test/t/grant4.test
parentc1204da1c72bb51c0b4904704b69411f7ce391e3 (diff)
downloadmariadb-git-f5722f5851bb4603040d5010aeeb98244cc2789f.tar.gz
cleanup: normalize LEX_USER to get rid of different representation of the same thing
username IDENTIFIED BY PASSWORD xxx username IDENTIFIED VIA mysql_native_password USING xxx etc also check for valid strlen(xxx)
Diffstat (limited to 'mysql-test/t/grant4.test')
-rw-r--r--mysql-test/t/grant4.test31
1 files changed, 31 insertions, 0 deletions
diff --git a/mysql-test/t/grant4.test b/mysql-test/t/grant4.test
index 756454237f5..36c44fe997a 100644
--- a/mysql-test/t/grant4.test
+++ b/mysql-test/t/grant4.test
@@ -201,3 +201,34 @@ disconnect con1;
connection default;
drop database mysqltest_db1;
drop user mysqltest_u1@localhost;
+
+create user foo1 identified by password '11111111111111111111111111111111111111111';
+create user foo2 identified by password '2222222222222222';
+create user foo3 identified via mysql_native_password using '11111111111111111111111111111111111111111';
+create user foo4 identified via mysql_old_password using '2222222222222222';
+
+grant select on test.* to foo5 identified by password '11111111111111111111111111111111111111111';
+grant select on test.* to foo6 identified by password '2222222222222222';
+grant select on test.* to foo7 identified via mysql_native_password using '11111111111111111111111111111111111111111';
+grant select on test.* to foo8 identified via mysql_old_password using '2222222222222222';
+
+--sorted_result
+select user,password,plugin,authentication_string from mysql.user where user like 'foo%';
+
+drop user foo1;
+drop user foo2;
+drop user foo3;
+drop user foo4;
+drop user foo5;
+drop user foo6;
+drop user foo7;
+drop user foo8;
+
+--error ER_PASSWD_LENGTH
+create user foo1 identified via mysql_native_password using '00';
+--error ER_PASSWD_LENGTH
+create user foo2 identified via mysql_native_password using '2222222222222222';
+--error ER_PASSWD_LENGTH
+create user foo3 identified via mysql_old_password using '00';
+--error ER_PASSWD_LENGTH
+create user foo4 identified via mysql_old_password using '11111111111111111111111111111111111111111';