Commit 1162af9f authored by unknown's avatar unknown

Cleaning up warning for windows. Innodb is compiled but disable on Windows, so...

Cleaning up warning for windows. Innodb is compiled but disable on Windows, so it should be fine. NDB wasn't compiled in, which is what caused the issue. 


mysql-test/r/warnings.result:
  Modified warning to work with Windows
mysql-test/t/warnings.test:
  Moved warning to use Innodb.
parent c56c14f5
......@@ -166,10 +166,10 @@ show variables like 'max_error_count';
Variable_name Value
max_error_count 10
drop table t1;
create table t1 (id int) engine=NDB;
create table t1 (id int) engine=Innodb;
Warnings:
Warning 1266 Using storage engine MyISAM for table 't1'
alter table t1 engine=NDB;
alter table t1 engine=Innodb;
Warnings:
Warning 1266 Using storage engine MyISAM for table 't1'
drop table t1;
......
......@@ -113,8 +113,8 @@ show variables like 'max_error_count';
# Test for handler type
#
drop table t1;
create table t1 (id int) engine=NDB;
alter table t1 engine=NDB;
create table t1 (id int) engine=Innodb;
alter table t1 engine=Innodb;
drop table t1;
#
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment