summaryrefslogtreecommitdiff
path: root/mysql-test/t/myisam.test
diff options
context:
space:
mode:
authorunknown <istruewing@stella.local>2008-01-15 12:51:51 +0100
committerunknown <istruewing@stella.local>2008-01-15 12:51:51 +0100
commit543cee3ea4119f9b00f38dd20adf2bad66e0f445 (patch)
tree68123483c78de9214bf60e7b6a71571d0be97b8c /mysql-test/t/myisam.test
parent99e49a34d4eab1d110645edeafbb04044a15812b (diff)
parent18a7ec307977df75160e071b57355404a09e8e96 (diff)
downloadmariadb-git-543cee3ea4119f9b00f38dd20adf2bad66e0f445.tar.gz
Merge stella.local:/home2/mydev/mysql-5.0-axmrg
into stella.local:/home2/mydev/mysql-5.1-axmrg mysql-test/t/myisam.test: Auto merged storage/myisam/mi_open.c: Auto merged mysql-test/r/myisam.result: Manual merge from 5.0
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r--mysql-test/t/myisam.test13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test
index bb2c295eac2..5d08293853e 100644
--- a/mysql-test/t/myisam.test
+++ b/mysql-test/t/myisam.test
@@ -1153,6 +1153,19 @@ CHECK TABLE t1 EXTENDED;
DROP TABLE t1;
#
+# Bug#32705 - myisam corruption: Key in wrong position
+# at page 1024 with ucs2_bin
+#
+CREATE TABLE t1 (
+ c1 CHAR(255) CHARACTER SET UCS2 COLLATE UCS2_BIN NOT NULL,
+ KEY(c1)
+ ) ENGINE=MyISAM;
+INSERT INTO t1 VALUES ('marshall\'s');
+INSERT INTO t1 VALUES ('marsh');
+CHECK TABLE t1 EXTENDED;
+DROP TABLE t1;
+
+#
# Bug#28837: MyISAM storage engine error (134) doing delete with self-join
#