summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/maria.result
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-11-09 08:26:59 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2021-11-09 08:26:59 +0200
commit524b4a89da3d9143ad72a82d73617ffde9e3a7a8 (patch)
tree4365b284812f3ea742b0d7bb96f2447c3c657b54 /mysql-test/suite/maria/maria.result
parentf7054ff5dfea7b84afdde11c14898cff7154521e (diff)
parentd6d1a1fc21084c81a0795a26e67577c2a718f6ea (diff)
downloadmariadb-git-524b4a89da3d9143ad72a82d73617ffde9e3a7a8.tar.gz
Merge 10.2 into 10.3
Diffstat (limited to 'mysql-test/suite/maria/maria.result')
-rw-r--r--mysql-test/suite/maria/maria.result11
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/maria.result b/mysql-test/suite/maria/maria.result
index dccb8e5314f..2a0317d504d 100644
--- a/mysql-test/suite/maria/maria.result
+++ b/mysql-test/suite/maria/maria.result
@@ -2871,3 +2871,14 @@ insert into t1 values (8,'0');
ERROR HY000: Table 't1' was locked with a READ lock and can't be updated
unlock tables;
drop table t1;
+#
+# MDEV-22284 Aria table key read crash because wrong index used
+#
+create table t1 (
+a int auto_increment,
+b int, c int,
+key(c, a), unique(b)
+) engine aria
+partition by hash (b);
+replace into t1 values (1, 0, 0), (2, 0, 0), (0, 0, 0);
+drop table t1;