blob: c9603634508b0590fea2b58e42852a93d59abfe8 (
plain)
1
2
3
4
5
6
7
8
9
|
# 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;
|