~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/rename.test

  • Committer: Joseph Daly
  • Date: 2010-10-30 01:01:48 UTC
  • mfrom: (1891 staging)
  • mto: This revision was merged to the branch mainline in revision 1900.
  • Revision ID: skinny.moey@gmail.com-20101030010148-k39lnrftv4bkbux9
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
show tables like "t_";
29
29
--error ER_TABLE_EXISTS_ERROR, ER_TABLE_EXISTS_ERROR
30
30
rename table t3 to t1, t2 to t3, t1 to t2, t4 to t1;
31
 
--error ER_TABLE_UNKNOWN
 
31
--error ER_NO_SUCH_TABLE
32
32
rename table t3 to t4, t5 to t3, t1 to t2, t4 to t1;
33
33
 
34
34
select * from t1;