diff options
author | evgen@moonbone.local <> | 2006-06-30 02:03:09 +0400 |
---|---|---|
committer | evgen@moonbone.local <> | 2006-06-30 02:03:09 +0400 |
commit | 3cc6d95d18a6a94f1f6d920b5fb5f11564cf92b9 (patch) | |
tree | 6ce5b21a6641825299a323d1ead34db5a94565ba /mysql-test/r/symlink.result | |
parent | 9fd38baf1349f8c42395029c83423605e9a80a44 (diff) | |
parent | 83bc48f38e3dd27d1c6b9fe1c7d8e6497709fd01 (diff) | |
download | mariadb-git-3cc6d95d18a6a94f1f6d920b5fb5f11564cf92b9.tar.gz |
Merge
Diffstat (limited to 'mysql-test/r/symlink.result')
-rw-r--r-- | mysql-test/r/symlink.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/symlink.result b/mysql-test/r/symlink.result index 3ce7cc0c835..272836c450a 100644 --- a/mysql-test/r/symlink.result +++ b/mysql-test/r/symlink.result @@ -74,18 +74,24 @@ t9 CREATE TABLE `t9` ( ) ENGINE=MyISAM AUTO_INCREMENT=16725 DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQLTEST_VARDIR/tmp/' INDEX DIRECTORY='MYSQLTEST_VARDIR/run/' drop database mysqltest; create table t1 (a int not null) engine=myisam; +Warnings: +Warning 0 DATA DIRECTORY option ignored show create table t1; Table Create Table t1 CREATE TABLE `t1` ( `a` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 alter table t1 add b int; +Warnings: +Warning 0 DATA DIRECTORY option ignored show create table t1; Table Create Table t1 CREATE TABLE `t1` ( `a` int(11) NOT NULL, `b` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 +Warnings: +Warning 0 INDEX DIRECTORY option ignored show create table t1; Table Create Table t1 CREATE TABLE `t1` ( |