summaryrefslogtreecommitdiff
path: root/mysql-test/r/bug58669.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/bug58669.result')
-rw-r--r--mysql-test/r/bug58669.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/bug58669.result b/mysql-test/r/bug58669.result
index c9bd43e244b..a7d1d7b5581 100644
--- a/mysql-test/r/bug58669.result
+++ b/mysql-test/r/bug58669.result
@@ -5,6 +5,8 @@ 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
@@ -13,5 +15,7 @@ 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;