Commit fd1755e4 authored by Sergei Petrunia's avatar Sergei Petrunia

MDEV-15101: Stop ANALYZE TABLE from flushing table definition cache

Part#2: forgot to commit the adjustments for the testcases.
parent 43120009
...@@ -16,8 +16,11 @@ send_eval SELECT * FROM $percona_nonflushing_analyze_table; ...@@ -16,8 +16,11 @@ send_eval SELECT * FROM $percona_nonflushing_analyze_table;
SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress"; SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress";
set @tmp=@@use_stat_tables;
set use_stat_tables='preferably_for_queries';
eval ANALYZE TABLE $percona_nonflushing_analyze_table; eval ANALYZE TABLE $percona_nonflushing_analyze_table;
set use_stat_tables=@tmp;
# With the bug fixed this should not block # With the bug fixed this should not block
eval SELECT * FROM $percona_nonflushing_analyze_table; eval SELECT * FROM $percona_nonflushing_analyze_table;
......
...@@ -5,10 +5,12 @@ SET DEBUG_SYNC="handler_ha_index_next_end SIGNAL idx_scan_in_progress WAIT_FOR f ...@@ -5,10 +5,12 @@ SET DEBUG_SYNC="handler_ha_index_next_end SIGNAL idx_scan_in_progress WAIT_FOR f
SELECT * FROM t1; SELECT * FROM t1;
connection default; connection default;
SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress"; SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress";
set @tmp=@@use_stat_tables;
set use_stat_tables='preferably_for_queries';
ANALYZE TABLE t1; ANALYZE TABLE t1;
Table Op Msg_type Msg_text Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK test.t1 analyze status OK
set use_stat_tables=@tmp;
SELECT * FROM t1; SELECT * FROM t1;
a a
1 1
......
...@@ -8,10 +8,12 @@ SET DEBUG_SYNC="handler_ha_index_next_end SIGNAL idx_scan_in_progress WAIT_FOR f ...@@ -8,10 +8,12 @@ SET DEBUG_SYNC="handler_ha_index_next_end SIGNAL idx_scan_in_progress WAIT_FOR f
SELECT * FROM t1; SELECT * FROM t1;
connection default; connection default;
SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress"; SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress";
set @tmp=@@use_stat_tables;
set use_stat_tables='preferably_for_queries';
ANALYZE TABLE t1; ANALYZE TABLE t1;
Table Op Msg_type Msg_text Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK test.t1 analyze status OK
set use_stat_tables=@tmp;
SELECT * FROM t1; SELECT * FROM t1;
a a
1 1
...@@ -41,10 +43,12 @@ SET DEBUG_SYNC="handler_ha_index_next_end SIGNAL idx_scan_in_progress WAIT_FOR f ...@@ -41,10 +43,12 @@ SET DEBUG_SYNC="handler_ha_index_next_end SIGNAL idx_scan_in_progress WAIT_FOR f
SELECT * FROM t2; SELECT * FROM t2;
connection default; connection default;
SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress"; SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress";
set @tmp=@@use_stat_tables;
set use_stat_tables='preferably_for_queries';
ANALYZE TABLE t2; ANALYZE TABLE t2;
Table Op Msg_type Msg_text Table Op Msg_type Msg_text
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status OK test.t2 analyze status OK
set use_stat_tables=@tmp;
SELECT * FROM t2; SELECT * FROM t2;
a a
1 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment