summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/roles/acl_load_mutex-5170.test
blob: 76d817be055b94d5a226e2d4f046982c093164c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--source include/not_embedded.inc
#
# MDEV-5170 Assertion `(&(&acl_cache->lock)->m_mutex)->count > 0 && pthread_equal(pthread_self(), (&(&acl_cache->lock)->m_mutex)->thread)' fails after restarting server with a pre-created role grants
#
create user user1@localhost;
create role r1 with admin user1@localhost;
grant all on test.* to r1;
flush tables;

--append_file $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
wait
EOF
--shutdown_server
--source include/wait_until_disconnected.inc
--enable_reconnect
--append_file $MYSQLTEST_VARDIR/tmp/mysqld.1.expect
restart
EOF
--source include/wait_until_connected_again.inc

select 1;

drop role r1;
drop user user1@localhost;