summaryrefslogtreecommitdiff
path: root/mysql-test/r/symlink.result
diff options
context:
space:
mode:
authorgluh@mysql.com/eagle.(none) <>2007-02-01 18:00:24 +0400
committergluh@mysql.com/eagle.(none) <>2007-02-01 18:00:24 +0400
commit010dc0b55c1255b75ca6ddd1bd058c157624b9df (patch)
tree377c350f251e9ea221dc51f671e25b865691db6d /mysql-test/r/symlink.result
parent658777d8080a500918c3b5815cdafbf0e746c1e7 (diff)
downloadmariadb-git-010dc0b55c1255b75ca6ddd1bd058c157624b9df.tar.gz
Valgrind error fixes
Notes: This patch doesn't fix all issues in the tree and we need jani's fix for that This patch shoud not be merged into 5.0
Diffstat (limited to 'mysql-test/r/symlink.result')
-rw-r--r--mysql-test/r/symlink.result15
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/symlink.result b/mysql-test/r/symlink.result
index bc7d3275754..9b21dc7e952 100644
--- a/mysql-test/r/symlink.result
+++ b/mysql-test/r/symlink.result
@@ -123,4 +123,19 @@ select * from t1;
a
42
drop table t1;
+execute stmt;
+show create table t1;
+Table Create Table
+t1 CREATE TABLE `t1` (
+ `c` char(10) default NULL
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQLTEST_VARDIR/tmp/'
+drop table t1;
+execute stmt;
+show create table t1;
+Table Create Table
+t1 CREATE TABLE `t1` (
+ `c` char(10) default NULL
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQLTEST_VARDIR/tmp/'
+drop table t1;
+deallocate prepare stmt;
End of 4.1 tests