diff options
author | unknown <istruewing@stella.local> | 2008-01-16 15:38:40 +0100 |
---|---|---|
committer | unknown <istruewing@stella.local> | 2008-01-16 15:38:40 +0100 |
commit | dd40d4ea407e640d47b0f34fdb177b4d6ee4a175 (patch) | |
tree | 2ecd737afc5ec754270c603aa861034dff48f770 /mysql-test/r/myisam.result | |
parent | 794753cd5d490123c707875ed508a842ca09f645 (diff) | |
download | mariadb-git-dd40d4ea407e640d47b0f34fdb177b4d6ee4a175.tar.gz |
Bug#32705 - myisam corruption: Key in wrong position
at page 1024 with ucs2_bin
Post merge fix
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 6863259aa9a..a18018657e0 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -1809,16 +1809,6 @@ CHECK TABLE t1 EXTENDED; Table Op Msg_type Msg_text test.t1 check status OK DROP TABLE t1; -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; -Table Op Msg_type Msg_text -test.t1 check status OK -DROP TABLE t1; CREATE TABLE t1 (id int NOT NULL, ref int NOT NULL, INDEX (id)) ENGINE=MyISAM; CREATE TABLE t2 LIKE t1; INSERT INTO t2 (id, ref) VALUES (1,3), (2,1), (3,2), (4,5), (4,4); |