blob: 638a88f3956fed002832ea9fc51a8880e9a0a87c (
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 = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
enable_query_log;
|