~posulliv/drizzle/memcached_applier

« back to all changes in this revision

Viewing changes to tests/t/frm.test

  • Committer: Jay Pipes
  • Date: 2009-08-03 14:23:22 UTC
  • mfrom: (1039.2.68 staging)
  • mto: This revision was merged to the branch mainline in revision 1078.
  • Revision ID: jpipes@serialcoder-20090803142322-1g67h7su9mocg9ig
Merge trunk

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