1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

correct cluster support check

This commit is contained in:
tomas@whalegate.ndb.mysql.com
2007-07-13 22:45:05 +02:00
parent b0aabc7940
commit 07656398a8

View File

@@ -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;