last fix?

This commit is contained in:
Horst.Hunger 2009-11-27 17:37:39 +01:00
parent 373c18df9b
commit 940b876e24

View file

@ -15,17 +15,17 @@ inet_ntoa(@nip)
127.0.0.1
SELECT USER();
USER()
root@localhost
root@127.0.0.1
SELECT current_user();
current_user()
root@localhost
root@127.0.0.1
SHOW PROCESSLIST;
REVOKE ALL ON test.* FROM testuser@'127.0.0.1';
RENAME USER testuser@'127.0.0.1' to testuser1@'127.0.0.1';
SET PASSWORD FOR testuser1@'127.0.0.1' = PASSWORD ('9876');
SELECT USER();
USER()
root@localhost
root@127.0.0.1
DROP USER testuser1@'127.0.0.1';
=============Test of '::1' ========================
connect (con1, ::1, root, , test, MASTER_MYPORT);