~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/symlink.test

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
check table t9;
46
46
optimize table t9;
47
47
SET GLOBAL myisam_sort_buffer_size=1024;
48
 
repair table t9;
 
48
check table t9;
49
49
alter table t9 add column c int not null;
50
50
 
51
51
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
174
174
 
175
175
--echo End of 4.1 tests
176
176
 
177
 
#
178
 
# Bug #29325: create table overwrites .MYD file of other table (datadir)
179
 
#
180
 
SET SESSION keep_files_on_create = TRUE;
181
 
--write_file $MYSQLTEST_VARDIR/master-data/test/t1.MYD
182
 
EOF
183
 
--disable_abort_on_error
184
 
--error 1,1,ER_TABLE_EXISTS_ERROR
185
 
CREATE TABLE t1 (a INT) ENGINE MYISAM;
186
 
--error 0,1
187
 
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYD
188
 
--enable_abort_on_error
189
 
SET SESSION keep_files_on_create = FALSE;
190
 
CREATE TABLE t1 (a INT) ENGINE MYISAM;
191
 
DROP TABLE t1;
192
 
 
193
177
--echo End of 5.0 tests
194
178
 
195
179
#