mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
511ef0cc29
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-rpl mysql-test/extra/rpl_tests/rpl_log.test: Auto merged mysql-test/extra/rpl_tests/rpl_row_basic.test: Auto merged mysql-test/t/rpl_ndb_bank.test: Auto merged mysql-test/t/rpl_ndb_basic.test: Auto merged mysql-test/t/rpl_ndb_do_table.test: Auto merged mysql-test/t/rpl_ndb_idempotent.test: Auto merged mysql-test/t/rpl_ndb_stm_innodb.test: Auto merged mysql-test/t/rpl_ndb_sync.test: Auto merged sql/ha_ndbcluster_binlog.cc: Auto merged storage/ndb/test/run-test/daily-basic-tests.txt: Auto merged mysql-test/include/have_multi_ndb.inc: manual merge mysql-test/include/have_ndb.inc: manual merge mysql-test/t/rpl_ndb_commit_afterflush.test: manual merge mysql-test/t/rpl_ndb_ddl.test: manual merge mysql-test/t/rpl_ndb_innodb_trans.test: manual merge
30 lines
958 B
PHP
30 lines
958 B
PHP
# Setup connections to both MySQL Servers connected to the cluster
|
|
connect (server1,127.0.0.1,root,,test,$MASTER_MYPORT,);
|
|
connect (server2,127.0.0.1,root,,test,$MASTER_MYPORT1,);
|
|
|
|
# Check that server1 has NDB support
|
|
connection server1;
|
|
disable_query_log;
|
|
--disable_warnings
|
|
drop table if exists t1, t2;
|
|
--enable_warnings
|
|
flush tables;
|
|
--require r/true.require
|
|
select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
|
|
--source include/ndb_not_readonly.inc
|
|
enable_query_log;
|
|
|
|
# Check that server2 has NDB support
|
|
connection server2;
|
|
disable_query_log;
|
|
--disable_warnings
|
|
drop table if exists t1, t2;
|
|
--enable_warnings
|
|
flush tables;
|
|
--require r/true.require
|
|
select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'ndbcluster';
|
|
--source include/ndb_not_readonly.inc
|
|
enable_query_log;
|
|
|
|
# Set the default connection to 'server1'
|
|
connection server1;
|