diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-01-07 09:08:09 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-01-07 09:08:09 +0200 |
commit | 92abdcca5a5324f0727112ab2417d10c7a8d5094 (patch) | |
tree | 39c43a798bd9525895a40e1de4cb311637a3131c /mysql-test/main/order_by.test | |
parent | 8a4ca33938921bddd7186a1e30d13197952249ca (diff) | |
parent | a9933105938d4d809ea33ac3196e681cd581374f (diff) | |
download | mariadb-git-92abdcca5a5324f0727112ab2417d10c7a8d5094.tar.gz |
Merge 10.5 into 10.6
Diffstat (limited to 'mysql-test/main/order_by.test')
-rw-r--r-- | mysql-test/main/order_by.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/main/order_by.test b/mysql-test/main/order_by.test index 05d9d45debe..a9ebef1a076 100644 --- a/mysql-test/main/order_by.test +++ b/mysql-test/main/order_by.test @@ -533,11 +533,11 @@ drop table t1, t2; # Bug #5428: a problem with small max_sort_length value # -create table t1 (a char(25)); +create table t1 (a char(70)); insert into t1 set a = repeat('x', 20); -insert into t1 set a = concat(repeat('x', 19), 'z'); -insert into t1 set a = concat(repeat('x', 19), 'ab'); -insert into t1 set a = concat(repeat('x', 19), 'aa'); +insert into t1 set a = concat(repeat('x', 63), 'z'); +insert into t1 set a = concat(repeat('x', 63), 'ab'); +insert into t1 set a = concat(repeat('x', 63), 'aa'); set max_sort_length=20; select a from t1 order by a; drop table t1; |