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