summaryrefslogtreecommitdiff
path: root/mysql-test/t/myisam.test
diff options
context:
space:
mode:
authorunknown <istruewing@stella.local>2008-01-15 09:43:47 +0100
committerunknown <istruewing@stella.local>2008-01-15 09:43:47 +0100
commit18a7ec307977df75160e071b57355404a09e8e96 (patch)
tree7f28382d7f8ea5d9439327c802b22968149c953c /mysql-test/t/myisam.test
parent84762ce2cb01d352858dfff14afa9debffd14d8a (diff)
parent53f762abfd26e432477016f00cd984e2c6c9e2d1 (diff)
downloadmariadb-git-18a7ec307977df75160e071b57355404a09e8e96.tar.gz
Merge stella.local:/home2/mydev/mysql-5.0-bug32705
into stella.local:/home2/mydev/mysql-5.0-axmrg mysql-test/r/myisam.result: Manual merge from 4.1 mysql-test/t/myisam.test: Manual merge from 4.1
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 90d4fc01afb..58e991cb323 100644
--- a/mysql-test/t/myisam.test
+++ b/mysql-test/t/myisam.test
@@ -1194,6 +1194,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
#