mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
13 lines
324 B
Text
13 lines
324 B
Text
|
--source include/have_debug_sync.inc
|
||
|
--source include/have_innodb.inc
|
||
|
|
||
|
#set use_stat_tables='preferably_for_queries';
|
||
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
||
|
INSERT INTO t1 VALUES (1), (2), (3);
|
||
|
|
||
|
--let $percona_nonflushing_analyze_table= t1
|
||
|
--source include/percona_nonflushing_analyze_debug.inc
|
||
|
|
||
|
DROP TABLE t1;
|
||
|
|