mariadb/mysql-test/r/warnings_engine_disabled.result
msvensson@neptunus.(none) a246eb39bb Bug#24997 warnings test case failure
- Move the specific test case to a separate file that is run only
   if we have a disabled handler.
2006-12-15 15:05:50 +01:00

7 lines
211 B
Text

create table t1 (id int) engine=NDB;
Warnings:
Warning 1266 Using storage engine MyISAM for table 't1'
alter table t1 engine=NDB;
Warnings:
Warning 1266 Using storage engine MyISAM for table 't1'
drop table t1;