1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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

@ -79,6 +79,7 @@ SET @@max_heap_table_size=@save_max_heap_table_size;
--echo #
CREATE TABLE t2 (id INTEGER) ENGINE=InnoDB;
--disable_view_protocol
BEGIN;
INSERT INTO t2 SELECT b.seq FROM seq_1_to_128 a, seq_1_to_16384 b
ORDER BY b.seq*rand();
@ -103,5 +104,6 @@ SET @@max_heap_table_size=@save_max_heap_table_size;
--echo # Back to default tmp_table_size / max_heap_table_size
SELECT SQL_NO_CACHE count(DISTINCT id) sm FROM t2;
COMMIT;
--enable_view_protocol
DROP TABLE t2;