diff options
author | Alexander Barkov <bar@mariadb.org> | 2015-06-09 12:08:46 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2015-06-09 12:08:46 +0400 |
commit | f744b2a15ff3a8e2b93ae4f17ffe5a22af9bcd88 (patch) | |
tree | 3df42a4118b4b1660637228aa725e60fb3dd49c5 /mysql-test/r/partition.result | |
parent | 93fc04ff1dc613a9ad75ccc57988a6b57b94b6cb (diff) | |
download | mariadb-git-f744b2a15ff3a8e2b93ae4f17ffe5a22af9bcd88.tar.gz |
MDEV-8283 crash in get_mm_leaf with xor on binary col
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index 233494238a5..71adc194693 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -2628,3 +2628,16 @@ alter table t1 drop partition if exists p5; Warnings: Note 1507 Error in list of partitions to DROP DROP TABLE t1; +# +# Start of 10.1 tests +# +# +# MDEV-8283 crash in get_mm_leaf with xor on binary col +# +CREATE TABLE t1(a BINARY(80)) PARTITION BY KEY(a) PARTITIONS 3; +SELECT 1 FROM t1 WHERE a XOR 'a'; +1 +DROP TABLE t1; +# +# End of 10.1 tests +# |