mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
2abf499c76
Update tests for version 10.5
13 lines
362 B
Text
13 lines
362 B
Text
--source include/have_debug_sync.inc
|
|
--source include/have_innodb.inc
|
|
--source include/no_view_protocol.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;
|
|
|