blob: 8305a31095347da4f76836318527b294f509391b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--source include/master-slave.inc
connection slave;
# Check that server is compiled and started with support for NDB
disable_query_log;
--require r/true.require
select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
--source include/ndb_not_readonly.inc
enable_query_log;
# Set the default connection to 'master'
connection master;
|