~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/warnings_engine_disabled.result

  • Committer: Brian Aker
  • Date: 2009-01-08 22:47:46 UTC
  • mfrom: (642.1.77 drizzle-clean-code)
  • Revision ID: brian@tangent.org-20090108224746-b6l8m91ougralsh9
MergeĀ fromĀ Lee.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
create table t1 (id int) engine=NDB;
2
 
Warnings:
3
 
Warning 1266    Using storage engine MyISAM for table 't1'
4
 
alter table t1 engine=NDB;
5
 
Warnings:
6
 
Warning 1266    Using storage engine MyISAM for table 't1'
 
1
create table t1 (id int) engine=innodb;
7
2
drop table t1;