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

MDEV-31465: main.sum_distinct-big and main.merge-big fail with timeout with view-protocol

MDEV-31455: main.events_stress or events.events_stress fails with view-protocol
MDEV-31457: main.delete_use_source fails (hangs) with view-protocol

Fixed tests:
main.sum_distinct-big, main.delete_use_source - disabled view-protocol
for some cases because they use transactions without autocommit
main.events_stress, main.merge-big - disabled service connection
for some queries since it is necessary that the query SELECT pass
in the same session
This commit is contained in:
Lena Startseva
2023-08-11 11:25:36 +07:00
parent 47f0135d7a
commit fec93e7155
4 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,7 @@ analyze table t1;
--echo # Delete with limit (quick select - range acces)
--echo #
--disable_view_protocol
start transaction;
--enable_info
delete from t1 where (select count(*) from t1 b where b.c1=t1.c1) = 500 limit 1;
@ -111,6 +112,7 @@ rollback;
start transaction;
delete from t1 where (select count(*) from t1 b where b.c1=t1.c1) = 500 order by c2 desc limit 10 returning c1,c2;
rollback;
--enable_view_protocol
drop view v1;
drop table t1;