diff options
author | unknown <tomas@whalegate.ndb.mysql.com> | 2007-07-13 22:45:05 +0200 |
---|---|---|
committer | unknown <tomas@whalegate.ndb.mysql.com> | 2007-07-13 22:45:05 +0200 |
commit | 11350e076756aa4e85e5fe5443cbe8ebfd68c7f2 (patch) | |
tree | 0cccbc5fcd1bde7abdf077cfa51dd8e50b133870 /mysql-test/include/ndb_master-slave.inc | |
parent | a0cf0927afc300300eb9a2bfc95918dbd0c4517f (diff) | |
download | mariadb-git-11350e076756aa4e85e5fe5443cbe8ebfd68c7f2.tar.gz |
correct cluster support check
Diffstat (limited to 'mysql-test/include/ndb_master-slave.inc')
-rw-r--r-- | mysql-test/include/ndb_master-slave.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/ndb_master-slave.inc b/mysql-test/include/ndb_master-slave.inc index ad4eb103803..1568072202b 100644 --- a/mysql-test/include/ndb_master-slave.inc +++ b/mysql-test/include/ndb_master-slave.inc @@ -7,7 +7,7 @@ connection slave; # Check that server is compiled and started with support for NDB disable_query_log; --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'; --source include/ndb_not_readonly.inc enable_query_log; |