EVOLUTION-MANAGER
Edit File: percona_nonflushing_analyze_debug.result
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=RocksDB; INSERT INTO t1 VALUES (1), (2), (3); SET DEBUG_SYNC="handler_ha_index_next_end SIGNAL idx_scan_in_progress WAIT_FOR finish_scan"; SELECT * FROM t1; SET DEBUG_SYNC="now WAIT_FOR idx_scan_in_progress"; ANALYZE TABLE t1; Table Op Msg_type Msg_text test.t1 analyze status OK SELECT * FROM t1; a 1 2 3 SET DEBUG_SYNC="now SIGNAL finish_scan"; a 1 2 3 DROP TABLE t1;