1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fixed random failuring test main.innodb_ext_key

Fixed by copying the solution from 11.0
This commit is contained in:
Monty
2023-09-19 15:57:47 +03:00
parent 8a3a88a758
commit 5c9d8315cc
3 changed files with 8 additions and 8 deletions

View File

@ -162,10 +162,10 @@ insert into t0 values (1), (2), (3), (4), (5);
create index i_p_size on part(p_size);
explain
select * from t0, part ignore index (primary)
select straight_join * from t0, part ignore index (primary)
where p_partkey=t0.a and p_size=1;
select * from t0, part ignore index (primary)
select straight_join * from t0, part ignore index (primary)
where p_partkey=t0.a and p_size=1;
drop table t0;