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

MDEV-27691: make working view-protocol

Update tests for version 10.10
This commit is contained in:
Lena Startseva
2022-09-28 13:53:08 +07:00
parent f9bf41632e
commit 7be65b4b6b
6 changed files with 28 additions and 2 deletions

View File

@ -391,6 +391,9 @@ set join_cache_level=@save_join_cache_level;
--echo # Bug #59326: Greedy optimizer produce stupid query execution plans.
--echo #
#double warning for view protocol
--disable_view_protocol
CREATE TABLE t10(
K INT NOT NULL AUTO_INCREMENT,
I INT,
@ -952,4 +955,6 @@ INSERT INTO t3 VALUES (5),(6);
SELECT * FROM t1 WHERE 5 IN (SELECT t1_a.a FROM t1 as t1_a WHERE 1 IN (SELECT t1_b.a FROM t1 as t1_b LEFT JOIN (t2 JOIN t3) ON (t1_b.a = t2.d) WHERE t1_b.b < 1));
drop table t1,t2,t3;
--enable_view_protocol
--echo End of 10.0 tests