mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 14:32:34 +01:00
86b2be8d35
Remove compiler warnings Fix some broken tests Workaround for syncronization bug in NDB (Bug #16445)
15 lines
416 B
PHP
15 lines
416 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
|
|
# 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;
|
|
|
|
|