File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -809,7 +809,7 @@ PRIMARY KEY(pk)
809
809
INSERT INTO t2 SELECT a,a FROM t1;
810
810
EXPLAIN SELECT pk FROM t2 FORCE INDEX(k1);
811
811
id select_type table type possible_keys key key_len ref rows Extra
812
- 1 SIMPLE t2 index NULL k1 23 NULL 10 Using index
812
+ 1 SIMPLE t2 index NULL k1 23 NULL # Using index
813
813
DROP TABLE t1,t2;
814
814
set global innodb_stats_persistent= @innodb_stats_persistent_save;
815
815
set global innodb_stats_persistent_sample_pages= @innodb_stats_persistent_sample_pages_save;
Original file line number Diff line number Diff line change @@ -636,6 +636,7 @@ CREATE TABLE t2 (
636
636
)ENGINE=INNODB;
637
637
638
638
INSERT INTO t2 SELECT a,a FROM t1;
639
+ --replace_column 9 #
639
640
EXPLAIN SELECT pk FROM t2 FORCE INDEX(k1);
640
641
641
642
DROP TABLE t1,t2;
You can’t perform that action at this time.
0 commit comments