mirror of
https://github.com/MariaDB/server.git
synced 2025-08-29 00:08:14 +03:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
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;
|
|
--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;
|
|
--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;
|
|
|
|
# cleanup
|
|
|
|
connection server1;
|
|
disable_query_log;
|
|
disable_warnings;
|
|
--error 0,1051
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
|
|
flush tables;
|
|
flush status;
|
|
enable_warnings;
|
|
enable_query_log;
|
|
|
|
connection server2;
|
|
disable_query_log;
|
|
disable_warnings;
|
|
--error 0,1051
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
|
|
flush tables;
|
|
flush status;
|
|
enable_warnings;
|
|
enable_query_log;
|
|
|
|
# Set the default connection
|
|
connection server1;
|