~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/symlink.result

enable subselect_not, subselect_no_mat and variables tests, some other misc clean up on other tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
t1      CREATE TEMPORARY TABLE `t1` (
132
132
  `a` int
133
133
) ENGINE=MyISAM DATA DIRECTORY='MYSQLTEST_VARDIR/log/'
 
134
create table t1 (a int) engine=myisam select 42 a;
 
135
select * from t1;
 
136
a
 
137
9
 
138
select * from t1;
 
139
a
 
140
99
 
141
select * from t1;
 
142
a
 
143
42
 
144
drop table t1;
134
145
End of 4.1 tests
135
146
SET SESSION keep_files_on_create = TRUE;
136
147
CREATE TABLE t1 (a INT) ENGINE MYISAM;