mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
last fix?
This commit is contained in:
parent
373c18df9b
commit
940b876e24
1 changed files with 3 additions and 3 deletions
|
@ -15,17 +15,17 @@ inet_ntoa(@nip)
|
||||||
127.0.0.1
|
127.0.0.1
|
||||||
SELECT USER();
|
SELECT USER();
|
||||||
USER()
|
USER()
|
||||||
root@localhost
|
root@127.0.0.1
|
||||||
SELECT current_user();
|
SELECT current_user();
|
||||||
current_user()
|
current_user()
|
||||||
root@localhost
|
root@127.0.0.1
|
||||||
SHOW PROCESSLIST;
|
SHOW PROCESSLIST;
|
||||||
REVOKE ALL ON test.* FROM testuser@'127.0.0.1';
|
REVOKE ALL ON test.* FROM testuser@'127.0.0.1';
|
||||||
RENAME USER testuser@'127.0.0.1' to testuser1@'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');
|
SET PASSWORD FOR testuser1@'127.0.0.1' = PASSWORD ('9876');
|
||||||
SELECT USER();
|
SELECT USER();
|
||||||
USER()
|
USER()
|
||||||
root@localhost
|
root@127.0.0.1
|
||||||
DROP USER testuser1@'127.0.0.1';
|
DROP USER testuser1@'127.0.0.1';
|
||||||
=============Test of '::1' ========================
|
=============Test of '::1' ========================
|
||||||
connect (con1, ::1, root, , test, MASTER_MYPORT);
|
connect (con1, ::1, root, , test, MASTER_MYPORT);
|
||||||
|
|
Loading…
Add table
Reference in a new issue