WL#4077 fix for innodb test that were skipped

mysql-test/include/have_innodb.inc:
  added new value 'ENABLED' for 'support' field
This commit is contained in:
unknown 2007-12-20 23:57:06 +03:00
parent 267b00d682
commit 8e2d28e013

View file

@ -1,4 +1,4 @@
disable_query_log;
--require r/true.require
select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'innodb';
select (support = 'YES' or support = 'DEFAULT' or support = 'ENABLED') as `TRUE` from information_schema.engines where engine = 'innodb';
enable_query_log;