summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/rpl/r/grant_replication_slave.result
blob: 6ded7e72327b442127953e54a14271b1b54064a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# MDEV-21743 Split up SUPER privilege to smaller privileges
#
create user rpl@localhost;
grant replication slave on *.* to rpl@localhost;
include/master-slave.inc
[connection master]
connection slave;
stop slave;
change master to master_user='rpl';
connection master;
create database mysqltest1;
create table  mysqltest1.t1 (a int);
insert mysqltest1.t1 values (1),(2),(3);
select * from mysqltest1.t1;
a
1
2
3
flush tables;
create user foo@localhost;
grant select on *.* to foo@localhost;
connection slave;
start slave;
connection master;
connection slave;
select * from mysqltest1.t1;
a
1
2
3
show grants for foo@localhost;
Grants for foo@localhost
GRANT SELECT ON *.* TO `foo`@`localhost`
connection master;
drop user foo@localhost;
drop database mysqltest1;
connection slave;
stop slave;
change master to master_user='root';
start slave;
include/rpl_end.inc
drop user rpl@localhost;