~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/symlink.result

  • Committer: Brian Aker
  • Date: 2009-08-18 07:20:29 UTC
  • mfrom: (1117.1.9 merge)
  • Revision ID: brian@gaz-20090818072029-s9ch5lcmltxwidn7
Merge of Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  `b` varchar(16) NOT NULL,
43
43
  `c` int NOT NULL,
44
44
  PRIMARY KEY (`a`)
45
 
) ENGINE=MyISAM AUTO_INCREMENT=16725 INDEX DIRECTORY='MYSQLTEST_VARDIR/run/'
 
45
) ENGINE=MyISAM
46
46
alter table t9 rename t8, add column d int not null;
47
47
alter table t8 rename t7;
48
48
alter table t7 rename t9;
55
55
  `c` int NOT NULL,
56
56
  `d` int NOT NULL,
57
57
  PRIMARY KEY (`a`)
58
 
) ENGINE=MyISAM AUTO_INCREMENT=16725 INDEX DIRECTORY='MYSQLTEST_VARDIR/run/'
 
58
) ENGINE=MyISAM
59
59
create table t1 (a int not null auto_increment, b char(16) not null, primary key (a)) engine=myisam data directory="tmp";
60
60
Got one of the listed errors
61
61
create database mysqltest;
75
75
  `c` int NOT NULL,
76
76
  `d` int NOT NULL,
77
77
  PRIMARY KEY (`a`)
78
 
) ENGINE=MyISAM AUTO_INCREMENT=16725
 
78
) ENGINE=MyISAM
79
79
drop database mysqltest;
80
80
create temporary table t1 (a int not null) engine=myisam;
81
81
alter table t1 data directory="MYSQLTEST_VARDIR/tmp";
111
111
Table   Create Table
112
112
t1      CREATE TEMPORARY TABLE `t1` (
113
113
  `a` int DEFAULT NULL
114
 
) ENGINE=MyISAM DATA DIRECTORY='MYSQLTEST_VARDIR/log/'
 
114
) ENGINE=MyISAM
115
115
create temporary table t1 (a int) engine=myisam data directory="MYSQLTEST_VARDIR/log" select 99 a;
116
116
show create table t1;
117
117
Table   Create Table
118
118
t1      CREATE TEMPORARY TABLE `t1` (
119
119
  `a` int DEFAULT NULL
120
 
) ENGINE=MyISAM DATA DIRECTORY='MYSQLTEST_VARDIR/log/'
 
120
) ENGINE=MyISAM
121
121
End of 4.1 tests
122
122
End of 5.0 tests
123
123
CREATE TABLE t1(a INT) engine=archive