blob: 199b652561c688ce8d51efa5229a9a4d89607dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
source include/have_xtradb.inc;
SELECT sleep(2);
set global log_slow_verbosity=innodb;
set global slow_query_log_use_global_control="log_slow_verbosity,long_query_time";
SELECT sleep(2);
set global slow_query_log_use_global_control='';
set global log_slow_verbosity='';
FLUSH LOGS;
--let grep_file = $MYSQLTEST_VARDIR/mysqld.1/data/percona_slow_query_log-control_global_slow.log
--let grep_pattern = No InnoDB statistics available for this query
--source grep.inc
|