blob: 7785710648858396f10a723cd691567cc4e10230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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';
enable_query_log;
# Check that master mysqld has come out of redonly mode
--source include/ndb_not_readonly.inc
|