fix MDEV-26459 test on 32bit systems.

(where it test nothing but produce warnngs)
This commit is contained in:
Oleksandr Byelkin 2024-10-15 09:25:05 +02:00
parent 8a6a4c947a
commit f27b69a447

View file

@ -632,7 +632,9 @@ drop table t1,t2,t3;
--echo #
SET @sort_buffer_size_save= @@sort_buffer_size;
--disable_warnings
SET sort_buffer_size=1125899906842624;
--enable_warnings
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;