diff options
author | unknown <svoj@mysql.com/june.mysql.com> | 2007-01-24 11:53:09 +0400 |
---|---|---|
committer | unknown <svoj@mysql.com/june.mysql.com> | 2007-01-24 11:53:09 +0400 |
commit | 5e0fd916f1fa72cd2cc4126669ad1772a77e055d (patch) | |
tree | f8ddc84c247afd5cb197eb5c5f0671027086b150 /mysql-test/r/myisam.result | |
parent | 4c51028e46745bec76dd22f40206a713724081b3 (diff) | |
download | mariadb-git-5e0fd916f1fa72cd2cc4126669ad1772a77e055d.tar.gz |
After merge fix.
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 76a5ce16293..52dae8abd02 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -1608,19 +1608,6 @@ create table t3 (c1 int) engine=myisam pack_keys=default; create table t4 (c1 int) engine=myisam pack_keys=2; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2' at line 1 drop table t1, t2, t3; -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'; |