diff options
Diffstat (limited to 'mysql-test/suite/perfschema/r/hostcache_ipv6_max_con.result')
-rw-r--r-- | mysql-test/suite/perfschema/r/hostcache_ipv6_max_con.result | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/mysql-test/suite/perfschema/r/hostcache_ipv6_max_con.result b/mysql-test/suite/perfschema/r/hostcache_ipv6_max_con.result index 8fe9a0954a3..f9d2b556804 100644 --- a/mysql-test/suite/perfschema/r/hostcache_ipv6_max_con.result +++ b/mysql-test/suite/perfschema/r/hostcache_ipv6_max_con.result @@ -2,18 +2,6 @@ flush status; flush hosts; flush user_resources; flush privileges; -select @@global.debug; -@@global.debug - -select @@global.max_connect_errors; -@@global.max_connect_errors -100 -select @@global.max_user_connections; -@@global.max_user_connections -1024 -select @@global.max_connections; -@@global.max_connections -151 select `User`, `Host` from mysql.`user` where `host` like '%\\%%'; User Host select `User`, `Host` from mysql.`user` where `user` like '192.%'; @@ -22,8 +10,8 @@ select `User`, `Host` from mysql.`user` where `user` like '2001:%'; User Host select `User`, `Host` from mysql.`user` where `user` like 'santa.claus.%'; User Host -select @@global.max_connections into @saved_max_connections; -select @@global.max_user_connections into @saved_max_user_connections; +SET @saved_max_connections=@@global.max_connections; +SET @saved_max_user_connections=@@global.max_user_connections; create user 'quota'@'santa.claus.ipv6.example.com'; grant select on test.* to 'quota'@'santa.claus.ipv6.example.com'; grant usage on *.* to 'quota'@'santa.claus.ipv6.example.com' |