diff options
author | kostja@bodhi.local <> | 2006-08-30 01:48:15 +0400 |
---|---|---|
committer | kostja@bodhi.local <> | 2006-08-30 01:48:15 +0400 |
commit | 8566db3fc738a6f2046af5307a6fe704d4cc782b (patch) | |
tree | 8298402369788e3a248a3cc9ce131ad3de032fc9 /mysql-test/t/grant.test | |
parent | f8d34e10300ccf987bc8461a9581a7d5cfadcb29 (diff) | |
download | mariadb-git-8566db3fc738a6f2046af5307a6fe704d4cc782b.tar.gz |
Remove the fix for Bug#10668 "CREATE USER does not enforce username
length limit", it's superseded by the fix for Bug#16899 "Possible buffer
overflow in handling of DEFINER-clause". Update test results.
Diffstat (limited to 'mysql-test/t/grant.test')
-rw-r--r-- | mysql-test/t/grant.test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/t/grant.test b/mysql-test/t/grant.test index 0f63bc300d0..a938a8a64a7 100644 --- a/mysql-test/t/grant.test +++ b/mysql-test/t/grant.test @@ -805,12 +805,13 @@ DROP DATABASE mysqltest3; REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'mysqltest_1'@'localhost'; DROP USER 'mysqltest_1'@'localhost'; - +# eestore the original database +use test; # # Bug #10668: CREATE USER does not enforce username length limit # ---error ER_CANNOT_USER +--error ER_WRONG_STRING_LENGTH create user mysqltest1_thisisreallytoolong; # |