summaryrefslogtreecommitdiff
path: root/mysql-test/main/information_schema.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/information_schema.test')
-rw-r--r--mysql-test/main/information_schema.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/information_schema.test b/mysql-test/main/information_schema.test
index 27f5dd6103d..fcde8d57a7c 100644
--- a/mysql-test/main/information_schema.test
+++ b/mysql-test/main/information_schema.test
@@ -1447,7 +1447,7 @@ CREATE TABLE t1 (id INT);
CREATE USER nonpriv;
USE test;
-connect (nonpriv_con, localhost, nonpriv,,);
+connect (nonpriv_con, localhost, nonpriv,,"*NO-ONE*");
connection nonpriv_con;
--echo # connected as nonpriv
--echo # Should return 0
@@ -1493,7 +1493,7 @@ DROP TABLE ubig;
#
select 1 from information_schema.tables where table_schema=repeat('a', 2000);
grant usage on *.* to mysqltest_1@localhost;
-connect (con1, localhost, mysqltest_1,,);
+connect (con1, localhost, mysqltest_1,,"*NO-ONE*");
connection con1;
select 1 from information_schema.tables where table_schema=repeat('a', 2000);
connection default;