~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/frm.test

Merge Stewart's basic discovery branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
flush tables;
9
9
 
10
 
# Create a junk frm file on disk
11
 
system echo "this is a junk file for test" >> $MYSQLTEST_VARDIR/master-data/test/t1.frm ;
 
10
# Create a junk proto dfe file on disk
12
11
system echo "this is a junk file for test" >> $MYSQLTEST_VARDIR/master-data/test/t1.dfe ;
13
12
--replace_column 6 # 7 # 8 # 9 #
14
13
SHOW TABLE STATUS like 't1';
15
14
--error 1033
16
15
show create table t1;
17
 
--error 1051
18
16
drop table if exists t1;
19
 
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.frm
20
 
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.dfe
21
17
 
22
18
#end bug 93