summaryrefslogtreecommitdiff
path: root/mysql-test/include
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2020-11-03 23:38:31 +0100
committerSergei Golubchik <serg@mariadb.org>2020-12-10 08:45:20 +0100
commitb31912fd3525be526cd2852e376bd7d1e7ec4d31 (patch)
tree38bbef87035a4133cf0a6265f6e424040b63d59c /mysql-test/include
parent59bbe873d48b13eb3b8a912c2187ea94ee165ae9 (diff)
downloadmariadb-git-b31912fd3525be526cd2852e376bd7d1e7ec4d31.tar.gz
MDEV-24033: SIGSEGV in __memcmp_avx2_movbe from queue_insert | SIGSEGV in __memcmp_avx2_movbe from native_compare
don't allow too small max_sort_length values
Diffstat (limited to 'mysql-test/include')
-rw-r--r--mysql-test/include/ctype_utf8mb4.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/ctype_utf8mb4.inc b/mysql-test/include/ctype_utf8mb4.inc
index 862afe96f6c..2e924d6ddde 100644
--- a/mysql-test/include/ctype_utf8mb4.inc
+++ b/mysql-test/include/ctype_utf8mb4.inc
@@ -1585,7 +1585,7 @@ drop table t1;
--echo #
--echo # Check strnxfrm() with odd length
--echo #
-set max_sort_length=9;
+set max_sort_length=65;
select @@max_sort_length;
eval create table t1 (a varchar(128) character set utf8mb4 collate utf8mb4_general_ci) engine $engine;
insert into t1 values ('a'),('b'),('c');