diff options
author | unknown <svoj@june.mysql.com> | 2007-01-24 11:56:18 +0400 |
---|---|---|
committer | unknown <svoj@june.mysql.com> | 2007-01-24 11:56:18 +0400 |
commit | 8b405d4fad14a2c1cff8c67e8439488ad2eb88b9 (patch) | |
tree | d2ebaddcf466e7ed05e651baaafc4adbd0bd836e /mysql-test/r/myisam.result | |
parent | 6216e794c30fd3c05f9624279f5a57621201759e (diff) | |
parent | 5e0fd916f1fa72cd2cc4126669ad1772a77e055d (diff) | |
download | mariadb-git-8b405d4fad14a2c1cff8c67e8439488ad2eb88b9.tar.gz |
Merge mysql.com:/home/svoj/devel/mysql/BUG24401/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG24401/mysql-5.1-engines
mysql-test/r/myisam.result:
Auto merged
mysql-test/t/myisam.test:
Auto merged
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 2e14442c3c9..196c0191b25 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -1590,19 +1590,6 @@ show keys from t1; Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment t1 1 a 1 a A 8 NULL NULL YES BTREE drop table t1; -show create table t1; -show create table t1; -create table t1 (a int) engine=myisam select 42 a; -select * from t1; -a -9 -select * from t1; -a -99 -select * from t1; -a -42 -drop table t1; CREATE TABLE t1(a VARCHAR(16)); INSERT INTO t1 VALUES('aaaaaaaa'),(NULL); UPDATE t1 AS ta1, t1 AS ta2 SET ta1.a='aaaaaaaaaaaaaaaa'; |