summaryrefslogtreecommitdiff
path: root/mysql-test/include/have_multi_ndb.inc
diff options
context:
space:
mode:
authorunknown <gluh@mysql.com/eagle.(none)>2007-06-09 16:05:43 +0500
committerunknown <gluh@mysql.com/eagle.(none)>2007-06-09 16:05:43 +0500
commitf65930a9e21dc1e9bdf51579158fc6988c433586 (patch)
treed9c4b4d86cc6269fcc9ea951cacc912affe26973 /mysql-test/include/have_multi_ndb.inc
parent4c2f2ac5e7601d0f9b229b40005049861209c290 (diff)
downloadmariadb-git-f65930a9e21dc1e9bdf51579158fc6988c433586.tar.gz
compilation error fix
mysql-test/include/have_archive.inc: test fix(according to new 'support' column values) mysql-test/include/have_blackhole.inc: test fix(according to new 'support' column values) mysql-test/include/have_csv.inc: test fix(according to new 'support' column values) mysql-test/include/have_exampledb.inc: test fix(according to new 'support' column values) mysql-test/include/have_federated_db.inc: test fix(according to new 'support' column values) mysql-test/include/have_innodb.inc: test fix(according to new 'support' column values) mysql-test/include/have_multi_ndb.inc: test fix(according to new 'support' column values) mysql-test/include/have_ndb.inc: test fix(according to new 'support' column values) mysql-test/r/information_schema.result: result fix
Diffstat (limited to 'mysql-test/include/have_multi_ndb.inc')
-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 819518b2674..e9baf7d56e5 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 = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
+select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
enable_query_log;
# Check that server2 has NDB support
@@ -21,7 +21,7 @@ drop table if exists t1, t2;
--enable_warnings
flush tables;
--require r/true.require
-select support = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
+select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
enable_query_log;
# Check should be here as well...