mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Fixed the innodb_ext_key test by adding replace_column
This commit is contained in:
parent
577c970c52
commit
0a95c922c8
2 changed files with 2 additions and 1 deletions
|
|
@ -804,5 +804,5 @@ PRIMARY KEY(pk)
|
|||
INSERT INTO t2 SELECT a,a FROM t1;
|
||||
EXPLAIN SELECT pk FROM t2 FORCE INDEX(k1);
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 SIMPLE t2 index NULL k1 23 NULL 10 Using index
|
||||
1 SIMPLE t2 index NULL k1 23 NULL # Using index
|
||||
DROP TABLE t1,t2;
|
||||
|
|
|
|||
|
|
@ -622,6 +622,7 @@ CREATE TABLE t2 (
|
|||
)ENGINE=INNODB;
|
||||
|
||||
INSERT INTO t2 SELECT a,a FROM t1;
|
||||
--replace_column 9 #
|
||||
EXPLAIN SELECT pk FROM t2 FORCE INDEX(k1);
|
||||
|
||||
DROP TABLE t1,t2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue