blob: 8c277ea82a040699e97dcbb0e1a189f2d174c4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Check that server is compiled and started with support for NDB
-- require r/have_ndb.require
disable_query_log;
show variables like "have_ndbcluster";
enable_query_log;
# Check that NDB is installed and known to be working
# This will disable ndb from the shell script 'mysql-test-run'
-- require r/have_ndb_status_ok.require
disable_query_log;
eval select "$NDB_STATUS_OK" as ndb_status_ok;
enable_query_log;
|