mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
Fix for bug #58669: read_only not enforced on 5.5.x
merged from mysql-5.5.8-release tree, revision: ramil@mysql.com-20101203174908-217tdkn150vieha9
This commit is contained in:
17
mysql-test/r/bug58669.result
Normal file
17
mysql-test/r/bug58669.result
Normal file
@@ -0,0 +1,17 @@
|
||||
#
|
||||
# Bug#58669: read_only not enforced on 5.5.x
|
||||
#
|
||||
CREATE USER user1@localhost;
|
||||
CREATE DATABASE db1;
|
||||
GRANT ALL PRIVILEGES ON db1.* TO user1@localhost;
|
||||
CREATE TABLE db1.t1(a INT);
|
||||
SELECT CURRENT_USER();
|
||||
CURRENT_USER()
|
||||
user1@localhost
|
||||
SHOW VARIABLES LIKE "%read_only%";
|
||||
Variable_name Value
|
||||
read_only ON
|
||||
INSERT INTO db1.t1 VALUES (1);
|
||||
ERROR HY000: The MySQL server is running with the --read-only option so it cannot execute this statement
|
||||
DROP DATABASE db1;
|
||||
DROP USER user1@localhost;
|
1
mysql-test/t/bug58669-master.opt
Normal file
1
mysql-test/t/bug58669-master.opt
Normal file
@@ -0,0 +1 @@
|
||||
--read-only
|
22
mysql-test/t/bug58669.test
Normal file
22
mysql-test/t/bug58669.test
Normal file
@@ -0,0 +1,22 @@
|
||||
--source include/not_embedded.inc
|
||||
|
||||
--echo #
|
||||
--echo # Bug#58669: read_only not enforced on 5.5.x
|
||||
--echo #
|
||||
|
||||
CREATE USER user1@localhost;
|
||||
CREATE DATABASE db1;
|
||||
GRANT ALL PRIVILEGES ON db1.* TO user1@localhost;
|
||||
CREATE TABLE db1.t1(a INT);
|
||||
|
||||
connect (con1,localhost,user1,,);
|
||||
connection con1;
|
||||
SELECT CURRENT_USER();
|
||||
SHOW VARIABLES LIKE "%read_only%";
|
||||
--error ER_OPTION_PREVENTS_STATEMENT
|
||||
INSERT INTO db1.t1 VALUES (1);
|
||||
|
||||
connection default;
|
||||
disconnect con1;
|
||||
DROP DATABASE db1;
|
||||
DROP USER user1@localhost;
|
Reference in New Issue
Block a user