mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
aa591861f4
mysql-test/include/have_multi_ndb.inc: added new value 'ENABLED' for support column of information_schema.engines
30 lines
1,004 B
PHP
30 lines
1,004 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' or support = 'ENABLED') 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' or support = 'ENABLED') 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;
|