diff options
author | Ramil Kalimullin <ramil@mysql.com> | 2010-12-07 20:08:54 +0300 |
---|---|---|
committer | Ramil Kalimullin <ramil@mysql.com> | 2010-12-07 20:08:54 +0300 |
commit | 7e4961bd51c5aefcaa9a5491dd99251343bc57b3 (patch) | |
tree | c696b862453a3634c852c69a8c823e445624e159 /mysql-test/r/bug58669.result | |
parent | 6bad2a2a44328be23cbc4306408dcdbebfcd64f0 (diff) | |
download | mariadb-git-7e4961bd51c5aefcaa9a5491dd99251343bc57b3.tar.gz |
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
Diffstat (limited to 'mysql-test/r/bug58669.result')
-rw-r--r-- | mysql-test/r/bug58669.result | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/r/bug58669.result b/mysql-test/r/bug58669.result new file mode 100644 index 00000000000..5504c5908be --- /dev/null +++ b/mysql-test/r/bug58669.result @@ -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; |