~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/alter_table_rename_plus.test

  • Committer: Stewart Smith
  • Date: 2011-03-01 10:38:16 UTC
  • mto: (2241.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2242.
  • Revision ID: stewart@flamingspork.com-20110301103816-hv3z7o047gz5qe43
add a utterly insane test of combination of renaming table and disable/enable keys to alter_table_rename_plus test

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
ALTER TABLE t3 DISABLE KEYS, RENAME t4;
9
9
show tables;
10
10
show create table t4;
11
 
DROP TABLE t4;
 
11
ALTER TABLE t4 ENABLE KEYS, RENAME t5, DISABLE KEYS, RENAME t6, ENABLE KEYS;
 
12
show tables;
 
13
show create table t6;
 
14
DROP TABLE t6;