mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
13
mysql-test/main/analyze_debug.test
Normal file
13
mysql-test/main/analyze_debug.test
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
--source include/have_debug.inc
|
||||
|
||||
SET @save_use_stat_tables= @@use_stat_tables;
|
||||
SET use_stat_tables= PREFERABLY;
|
||||
CREATE TABLE t1 (a int);
|
||||
insert into t1 values (1),(2),(3);
|
||||
|
||||
SET STATEMENT debug_dbug="d,fail_2call_open_only_one_table" for
|
||||
ANALYZE TABLE t1;
|
||||
|
||||
drop table t1;
|
||||
SET use_stat_tables= @save_use_stat_tables;
|
Reference in New Issue
Block a user