1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-26459 Assertion `block_size <= 0xFFFFFFFFL' failed in calculate_block_sizes for 10.7 only

Limit default allocation block in tree of Unique class
This commit is contained in:
Oleksandr Byelkin
2021-10-01 11:00:29 +02:00
parent dd5ce6b0c4
commit da322f19c6
3 changed files with 29 additions and 2 deletions

View File

@ -557,3 +557,14 @@ having t3.a > any (select t2.b from t2
where t2.b*10 < sum(t3.b)));
drop table t1,t2,t3;
End of 10.4 tests
#
# MDEV-26459: Assertion `block_size <= 0xFFFFFFFFL' failed
# in calculate_block_sizes for 10.7 only
#
SET @sort_buffer_size_save= @@sort_buffer_size;
SET sort_buffer_size=1125899906842624;
CREATE TABLE t1 (a INT,b CHAR,KEY(a,b));
DELETE a1 FROM t1 AS a1,t1 AS a2 WHERE a1.a=a2.a;
DROP TABLE t1;
SET sort_buffer_size= @sort_buffer_size_save;
# End of 10.11 tests