mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
c3e8fb57a0
skip ndb tests if cluster install failed. But provided for compatibility mysql-test/include/have_ndb.inc: Revert
13 lines
352 B
PHP
13 lines
352 B
PHP
# 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
|
|
-- require r/have_ndb_status_ok.require
|
|
disable_query_log;
|
|
eval select "$NDB_STATUS_OK" as ndb_status_ok;
|
|
enable_query_log;
|
|
|
|
|