From 06eaf7232e9a920468c0f8d74dcf2fe8b555501c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:24:36 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/main/bug58669.result | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mysql-test/main/bug58669.result (limited to 'mysql-test/main/bug58669.result') diff --git a/mysql-test/main/bug58669.result b/mysql-test/main/bug58669.result new file mode 100644 index 00000000..a7d1d7b5 --- /dev/null +++ b/mysql-test/main/bug58669.result @@ -0,0 +1,21 @@ +# +# 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); +connect con1,localhost,user1,,; +connection con1; +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 MariaDB server is running with the --read-only option so it cannot execute this statement +connection default; +disconnect con1; +DROP DATABASE db1; +DROP USER user1@localhost; -- cgit v1.2.3