~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/alter_table_build_method.result

  • Committer: Lee Bieber
  • Date: 2011-03-18 04:10:25 UTC
  • mfrom: (2241.1.2 build)
  • Revision ID: kalebral@gmail.com-20110318041025-1xoj1azy6zobhnbm
Merge Stewart - refactoring of default values
Merge Olaf - more refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (a int);
 
2
ALTER ONLINE TABLE t1 RENAME t2;
 
3
ALTER ONLINE TABLE t2 RENAME t1;
 
4
ALTER ONLINE TABLE t1 add column b int;
 
5
ERROR 42000: This version of Drizzle doesn't yet support 'ALTER ONLINE TABLE t1 add column b int'
 
6
ALTER OFFLINE TABLE t1 add column c int;
 
7
DROP TABLE t1;