diff options
author | jimw@rama.(none) <> | 2006-07-24 16:45:26 -0700 |
---|---|---|
committer | jimw@rama.(none) <> | 2006-07-24 16:45:26 -0700 |
commit | 36a26abd8f912c18efba651ad4d6f6f99747af15 (patch) | |
tree | d24e85a81ecddbc8e760854b7e45effc8f4c3385 /mysql-test/t/grant.test | |
parent | b7a55b9b5c645fbedc81d7e751c25fed4a44d8db (diff) | |
download | mariadb-git-36a26abd8f912c18efba651ad4d6f6f99747af15.tar.gz |
Bug #10668: CREATE USER does not enforce username length limit
This appears to have just been an oversight -- CREATE USER was not enforcing
the existing username limitations.
Diffstat (limited to 'mysql-test/t/grant.test')
-rw-r--r-- | mysql-test/t/grant.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/grant.test b/mysql-test/t/grant.test index a9d52f559ca..d025709cc21 100644 --- a/mysql-test/t/grant.test +++ b/mysql-test/t/grant.test @@ -680,4 +680,10 @@ drop table t2; drop table t1; +# +# Bug #10668: CREATE USER does not enforce username length limit +# +--error ER_CANNOT_USER +create user mysqltest1_thisisreallytoolong; +--echo End of 5.0 tests |