diff options
author | jimw@mysql.com <> | 2005-03-03 15:01:46 -0800 |
---|---|---|
committer | jimw@mysql.com <> | 2005-03-03 15:01:46 -0800 |
commit | f7c01cfb76fa4284973a34ee03a9c2f71359dae0 (patch) | |
tree | d9fcf7c0806dd22a5d3dc0996b6c7b4ff240cbb9 /mysql-test/r/symlink.result | |
parent | 18f13a24a2890e610e868ebfc7e04397b78d6e85 (diff) | |
parent | 96e034f50e49068dd2391ef12f94cb40dcee7b1b (diff) | |
download | mariadb-git-f7c01cfb76fa4284973a34ee03a9c2f71359dae0.tar.gz |
Merged from 4.1
Diffstat (limited to 'mysql-test/r/symlink.result')
-rw-r--r-- | mysql-test/r/symlink.result | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/symlink.result b/mysql-test/r/symlink.result index 8aa20a88177..b36020bc2a3 100644 --- a/mysql-test/r/symlink.result +++ b/mysql-test/r/symlink.result @@ -93,3 +93,15 @@ t1 CREATE TABLE `t1` ( `b` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `i` int(11) default NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `i` int(11) default NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; |