mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
79d87430db
Remove compiler warnings Fix some broken tests Workaround for syncronization bug in NDB (Bug #16445) client/mysqltest.c: Added more information to output from abort_not_supported_test() Removed compiler warnings include/my_sys.h: Added function to print names of open files include/mysys_err.h: Print names of open files mysql-test/include/have_ndb.inc: Added comment mysql-test/lib/mtr_report.pl: Only print warning once mysql-test/r/mysqldump.result: After merge fix mysql-test/r/ndb_basic.result: Workaround for syncronization bug in NDB mysql-test/r/ndb_config.result: Remove not portable test mysql-test/t/ndb_basic.test: Workaround for syncronization bug in NDB mysql-test/t/ndb_config.test: Remove not portable test mysys/errors.c: Print names of open files mysys/my_file.c: Ensure that structs are cleared and copyied properly so that my_print_open_files() works. mysys/my_init.c: In case of EXTRA_DEBUG, print names of open files mysys/my_open.c: Added function to print names of open files sql/sql_table.cc: Fixed file-not-closed error
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;
|
|
|
|
|