diff options
Diffstat (limited to 'mysql-test/suite/perfschema/t/hostcache_ipv6_max_con.test')
-rw-r--r-- | mysql-test/suite/perfschema/t/hostcache_ipv6_max_con.test | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/mysql-test/suite/perfschema/t/hostcache_ipv6_max_con.test b/mysql-test/suite/perfschema/t/hostcache_ipv6_max_con.test index 0ced79544a3..8948ea45e37 100644 --- a/mysql-test/suite/perfschema/t/hostcache_ipv6_max_con.test +++ b/mysql-test/suite/perfschema/t/hostcache_ipv6_max_con.test @@ -177,9 +177,17 @@ disconnect con4c; --source ../include/wait_for_pfs_thread_count.inc set global max_user_connections = 0; -set global max_connections = 3; +set global max_connections = 10; flush user_resources; +connect (tmp_con1,"::1",quota,,test,$MASTER_MYPORT,); +connect (tmp_con2,"::1",quota,,test,$MASTER_MYPORT,); +connect (tmp_con3,"::1",quota,,test,$MASTER_MYPORT,); +connect (tmp_con4,"::1",quota,,test,$MASTER_MYPORT,); +connect (tmp_con5,"::1",quota,,test,$MASTER_MYPORT,); +connect (tmp_con6,"::1",quota,,test,$MASTER_MYPORT,); +connect (tmp_con7,"::1",quota,,test,$MASTER_MYPORT,); + connect (con5a,"::1",quota,,test,$MASTER_MYPORT,); select "Con4a is alive"; select current_user(); @@ -215,6 +223,13 @@ connect (con5d,"::1",quota,,test,$MASTER_MYPORT,); disconnect con5a; disconnect con5b; +--disconnect tmp_con1 +--disconnect tmp_con2 +--disconnect tmp_con3 +--disconnect tmp_con4 +--disconnect tmp_con5 +--disconnect tmp_con6 +--disconnect tmp_con7 # Wait for all disconnects --source ../include/wait_for_pfs_thread_count.inc |