diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-25 20:51:22 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-31 10:11:16 +0400 |
commit | 282497dd6d1049b4fb963641504c2733752845a7 (patch) | |
tree | 7288d17c29fbbe9ac47ec51f6988fb954f59a361 /mysql-test/suite/roles/grant_empty.result | |
parent | 5052e2479e873461bebfcedbc674bbaf57d3c968 (diff) | |
download | mariadb-git-282497dd6d1049b4fb963641504c2733752845a7.tar.gz |
MDEV-6720 - enable connection log in mysqltest by default
Diffstat (limited to 'mysql-test/suite/roles/grant_empty.result')
-rw-r--r-- | mysql-test/suite/roles/grant_empty.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/roles/grant_empty.result b/mysql-test/suite/roles/grant_empty.result index dfc0f513396..cfe74fa7aa3 100644 --- a/mysql-test/suite/roles/grant_empty.result +++ b/mysql-test/suite/roles/grant_empty.result @@ -3,6 +3,7 @@ ERROR OP000: Invalid role specification ``. create user ''@localhost; create role r1; grant r1 to ''@localhost; +connect con1,localhost,nonexisting_user,,; select current_user; current_user @localhost @@ -10,5 +11,6 @@ show grants; Grants for @localhost GRANT r1 TO ''@'localhost' GRANT USAGE ON *.* TO ''@'localhost' +connection default; drop role r1; drop user ''@localhost; |