summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <skozlov/ksm@mysql.com/virtop.localdomain>2007-12-18 16:10:58 +0300
committerunknown <skozlov/ksm@mysql.com/virtop.localdomain>2007-12-18 16:10:58 +0300
commitaa591861f47bda7e52a2ca63feb7cda30631e634 (patch)
treec65e86334e6a82491abfd3d3d58673b28380fb97
parent7477060bb38ee2412d6de4e350fd5a6b68c61c86 (diff)
downloadmariadb-git-aa591861f47bda7e52a2ca63feb7cda30631e634.tar.gz
WL#4077. Added new value 'ENABLED' for 'support' column of information_schema.engines
mysql-test/include/have_multi_ndb.inc: added new value 'ENABLED' for support column of information_schema.engines
-rw-r--r--mysql-test/include/have_multi_ndb.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/include/have_multi_ndb.inc b/mysql-test/include/have_multi_ndb.inc
index deda22b64c0..3a2100c1d25 100644
--- a/mysql-test/include/have_multi_ndb.inc
+++ b/mysql-test/include/have_multi_ndb.inc
@@ -10,7 +10,7 @@ drop table if exists t1, t2;
--enable_warnings
flush tables;
--require r/true.require
-select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
+select (support = 'YES' or support = 'DEFAULT' or support = 'ENABLED') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
--source include/ndb_not_readonly.inc
enable_query_log;
@@ -22,7 +22,7 @@ drop table if exists t1, t2;
--enable_warnings
flush tables;
--require r/true.require
-select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
+select (support = 'YES' or support = 'DEFAULT' or support = 'ENABLED') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
--source include/ndb_not_readonly.inc
enable_query_log;