diff options
Diffstat (limited to 'mysql-test/main/analyze_debug.result')
-rw-r--r-- | mysql-test/main/analyze_debug.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/main/analyze_debug.result b/mysql-test/main/analyze_debug.result new file mode 100644 index 00000000..2a11578a --- /dev/null +++ b/mysql-test/main/analyze_debug.result @@ -0,0 +1,10 @@ +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; +Table Op Msg_type Msg_text +test.t1 analyze status Operation failed +drop table t1; +SET use_stat_tables= @save_use_stat_tables; |