mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
Problem: "read-only" option ignored if it's enabled in the command line (or in the config file). Fix: sync opt_readonly (which is used for checks) with read_only (global var) when all server options are handled.
18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
#
|
|
# 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;
|