1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Stabilize main.subselect_sj2* tests

This commit is contained in:
Sergei Petrunia
2022-09-09 19:09:23 +03:00
parent d9d9c90a3d
commit ec6aa2829a
4 changed files with 22 additions and 9 deletions

View File

@ -87,6 +87,7 @@ insert into t3 select
A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a, A.a + 10*B.a
from t0 A, t0 B where B.a <5;
analyze table t3 persistent for all;
--replace_column 9 #
explain select * from t3 where b in (select a from t0);
select * from t3 where b in (select A.a+B.a from t0 A, t0 B where B.a<5);