summaryrefslogtreecommitdiff
path: root/mysql-test/main/information_schema.test
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2022-05-11 17:11:49 +0200
committerOleksandr Byelkin <sanja@mariadb.com>2022-05-20 13:18:58 +0200
commit6dc27a2b2de4f2e94d69a979af7e71c2ead4db34 (patch)
tree6506f3c8d930eebe22c281e03acfeb93f0810e5b /mysql-test/main/information_schema.test
parentbf2bdd1a1a112c3bbdf53da7a663a59fafa62c7d (diff)
downloadmariadb-git-bb-10.9-no_hack.tar.gz
MDEV-5215 prerequisite: remove test and test_* database hacks in the test suitebb-10.9-no_hack
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;