~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/symlink.test

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:
159
159
show create table t1;
160
160
 
161
161
connection default;
162
 
# NEEDS INVESTIGATION - Lost connection to Drizzle server
163
 
#create table t1 (a int) engine=myisam select 42 a;
 
162
create table t1 (a int) engine=myisam select 42 a;
164
163
 
165
 
#connection session1;
166
 
#select * from t1;
167
 
#disconnect session1;
168
 
#connection session2;
169
 
#select * from t1;
170
 
#disconnect session2;
171
 
#connection default;
172
 
#select * from t1;
173
 
#drop table t1;
 
164
connection session1;
 
165
select * from t1;
 
166
disconnect session1;
 
167
connection session2;
 
168
select * from t1;
 
169
disconnect session2;
 
170
connection default;
 
171
select * from t1;
 
172
drop table t1;
174
173
 
175
174
--echo End of 4.1 tests
176
175
 
184
183
--error 1,1,ER_TABLE_EXISTS_ERROR
185
184
CREATE TABLE t1 (a INT) ENGINE MYISAM;
186
185
--error 0,1
187
 
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYD;
 
186
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYD
188
187
--enable_abort_on_error
189
188
SET SESSION keep_files_on_create = FALSE;
190
189
CREATE TABLE t1 (a INT) ENGINE MYISAM;