MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
connection_cleanup.inc
1 # Tests for the performance schema
2 
3 # =====================================
4 # HELPER include/connection_cleanup.inc
5 # =====================================
6 
7 --disable_query_log
8 revoke all privileges, grant option from user1@localhost;
9 revoke all privileges, grant option from user2@localhost;
10 revoke all privileges, grant option from user3@localhost;
11 revoke all privileges, grant option from user4@localhost;
12 revoke all privileges, grant option from user5@localhost;
13 drop user user1@localhost;
14 drop user user2@localhost;
15 drop user user3@localhost;
16 drop user user4@localhost;
17 drop user user5@localhost;
18 flush privileges;
19 
20 drop procedure dump_all;
21 
22 truncate table performance_schema.accounts;
23 truncate table performance_schema.users;
24 truncate table performance_schema.hosts;
25 
26 --enable_query_log
27