diff options
author | unknown <istruewing@stella.local> | 2008-01-15 09:43:47 +0100 |
---|---|---|
committer | unknown <istruewing@stella.local> | 2008-01-15 09:43:47 +0100 |
commit | 18a7ec307977df75160e071b57355404a09e8e96 (patch) | |
tree | 7f28382d7f8ea5d9439327c802b22968149c953c /mysql-test/r/myisam.result | |
parent | 84762ce2cb01d352858dfff14afa9debffd14d8a (diff) | |
parent | 53f762abfd26e432477016f00cd984e2c6c9e2d1 (diff) | |
download | mariadb-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/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 33f64d600bb..3207d0d1f45 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -1839,6 +1839,16 @@ 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); |