Open Defined2014 opened 1 month ago
Please answer these questions before submitting your issue. Thanks!
create table t (pk int auto_increment, col int, index idx (col)); insert into t(col) values (1); explain analyze select * from t where col = 1;
The loops in execution info of IndexRangeScan equals to 2
execution info
IndexRangeScan
... time:1.29ms, loops:2 ...
The loops in execution info of IndexRangeScan equals to 3
... time:2.95ms, loops:3 ...
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | tidb_version() | +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Release Version: v8.4.0-alpha-290-gf2ed8228ff Edition: Community Git Commit Hash: f2ed8228ffc0cee144453ab334cdfe4aa5dac4a5 Git Branch: HEAD UTC Build Time: 2024-09-27 01:12:36 GoVersion: go1.21.10 Race Enabled: false Check Table Before Drop: false Store: tikv | +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.01 sec)
/assign @yibin87
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
The loops in
execution info
ofIndexRangeScan
equals to 23. What did you see instead (Required)
The loops in
execution info
ofIndexRangeScan
equals to 34. What is your TiDB version? (Required)