mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-17658 change the structure of mysql.user table
Implement User_table_json. Fix scripts to use mysql.global_priv. Fix tests.
This commit is contained in:
@ -4,8 +4,8 @@
|
||||
|
||||
source include/not_embedded.inc;
|
||||
|
||||
create table t1 as select * from mysql.user;
|
||||
truncate table mysql.user;
|
||||
create table t1 as select * from mysql.global_priv;
|
||||
truncate table mysql.global_priv;
|
||||
flush privileges;
|
||||
|
||||
# connecting via unix socket gives ER_ACCESS_DENIED_ERROR
|
||||
@ -14,7 +14,23 @@ flush privileges;
|
||||
--error ER_ACCESS_DENIED_ERROR,ER_HOST_NOT_PRIVILEGED
|
||||
connect (fail,localhost,u1);
|
||||
|
||||
insert mysql.user select * from t1;
|
||||
insert mysql.global_priv select * from t1;
|
||||
drop table t1;
|
||||
flush privileges;
|
||||
|
||||
#
|
||||
# same with mysql.user
|
||||
#
|
||||
|
||||
source include/switch_to_mysql_user.inc;
|
||||
truncate table mysql.user;
|
||||
|
||||
flush privileges;
|
||||
|
||||
# connecting via unix socket gives ER_ACCESS_DENIED_ERROR
|
||||
# connecting via tcp/ip gives ER_HOST_NOT_PRIVILEGED
|
||||
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
|
||||
--error ER_ACCESS_DENIED_ERROR,ER_HOST_NOT_PRIVILEGED
|
||||
connect (fail,localhost,u1);
|
||||
|
||||
source include/switch_to_mysql_global_priv.inc;
|
||||
|
Reference in New Issue
Block a user