~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/tests/t/alter_table.test

  • Committer: Brian Aker
  • Date: 2011-02-04 10:18:35 UTC
  • mfrom: (2143.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110204101835-j23pv0febg9p0a2p
Merge of all local trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
685
685
--echo "Non-copy data change - new frm, but old data and index files"
686
686
ALTER TABLE t1 CHANGE int_field unsigned_int_field INTEGER NOT NULL, RENAME t2;
687
687
 
688
 
--error ER_NO_SUCH_TABLE
 
688
--error ER_TABLE_UNKNOWN
689
689
SELECT * FROM t1 ORDER BY int_field;
690
690
SELECT * FROM t2 ORDER BY unsigned_int_field;
691
691
DESCRIBE t2;