~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/alter_table.result

  • Committer: Brian Aker
  • Date: 2009-12-01 23:52:10 UTC
  • mfrom: (1235.1.4 push)
  • Revision ID: brian@gaz-20091201235210-rb720ykhz8e06fda
Merge Brian + Monty. This has the HEAP -> MEMORY change in it, so some
breakage for wrong table name is expected.

Show diffs side-by-side

added added

removed removed

Lines of Context:
677
677
Field   Type    Null    Key     Default Extra
678
678
mycol   int     NO              0       
679
679
drop table t1;
680
 
create TEMPORARY table t1(id int primary key auto_increment) engine=heap;
 
680
create TEMPORARY table t1(id int primary key auto_increment) engine=MEMORY;
681
681
insert into t1 values (null);
682
682
insert into t1 values (null);
683
683
select * from t1;
692
692
1
693
693
2
694
694
50
695
 
alter table t1 engine = heap;
 
695
alter table t1 engine = MEMORY;
696
696
insert into t1 values (null);
697
697
select * from t1;
698
698
id