diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:04:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:04:16 +0000 |
commit | a68fb2d8219f6bccc573009600e9f23e89226a5e (patch) | |
tree | d742d35d14ae816e99293d2b01face30e9f3a46b /mysql-test/main/grant_slave_admin.test | |
parent | Initial commit. (diff) | |
download | mariadb-10.6-a68fb2d8219f6bccc573009600e9f23e89226a5e.tar.xz mariadb-10.6-a68fb2d8219f6bccc573009600e9f23e89226a5e.zip |
Adding upstream version 1:10.6.11.upstream/1%10.6.11upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | mysql-test/main/grant_slave_admin.test | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/mysql-test/main/grant_slave_admin.test b/mysql-test/main/grant_slave_admin.test new file mode 100644 index 00000000..d73c31e0 --- /dev/null +++ b/mysql-test/main/grant_slave_admin.test @@ -0,0 +1,74 @@ +-- source include/not_embedded.inc + +--echo # +--echo # Start of 10.5 tests +--echo # + +--echo # +--echo # MDEV-21743 Split up SUPER privilege to smaller privileges +--echo # + +--echo # +--echo # Test that slave admin statements are not allowed without REPLICATION SLAVE ADMIN or SUPER +--echo # + +CREATE USER user1@localhost IDENTIFIED BY ''; +GRANT ALL PRIVILEGES ON *.* TO user1@localhost; +REVOKE REPLICATION SLAVE ADMIN, SUPER ON *.* FROM user1@localhost; + +connect (con1,localhost,user1,,); +connection con1; +--error ER_SPECIFIC_ACCESS_DENIED_ERROR +START SLAVE; +--error ER_SPECIFIC_ACCESS_DENIED_ERROR +CHANGE MASTER TO MASTER_HOST='127.0.0.1'; +--error ER_SPECIFIC_ACCESS_DENIED_ERROR +STOP SLAVE; +disconnect con1; + +connection default; +DROP USER user1@localhost; + + +--echo # +--echo # Test that slave admin statements are allowed with REPLICATION SLAVE ADMIN +--echo # + +CREATE USER user1@localhost IDENTIFIED BY ''; +GRANT REPLICATION SLAVE ADMIN ON *.* TO user1@localhost; +SHOW GRANTS FOR user1@localhost; + +connect (con1,localhost,user1,,); +connection con1; +--error ER_BAD_SLAVE +START SLAVE; +CHANGE MASTER TO MASTER_USER='root'; +STOP SLAVE; +disconnect con1; + +connection default; +DROP USER user1@localhost; + + +--echo # +--echo # Test that slave admin statements are allowed with SUPER +--echo # + +CREATE USER user1@localhost IDENTIFIED BY ''; +GRANT SUPER ON *.* TO user1@localhost; +SHOW GRANTS FOR user1@localhost; + +connect (con1,localhost,user1,,); +connection con1; +--error ER_BAD_SLAVE +START SLAVE; +CHANGE MASTER TO MASTER_USER='root'; +STOP SLAVE; +disconnect con1; + +connection default; +DROP USER user1@localhost; + +--echo # +--echo # End of 10.5 tests +--echo # |