mirror of
https://github.com/MariaDB/server.git
synced 2025-02-15 18:05:32 +01:00
![Sergei Golubchik](/assets/img/avatar_default.png)
enable ssl + ssl_verify_server_cert in the internal client too * fix replication tests to disable master_ssl_verify_server_cert because accounts are passwordless - except rpl.rpl_ssl1 * fix federated/federatedx/connect to disable SSL_VERIFY_SERVER_CERT because they cannot configure an ssl connection * fix spider to disable ssl_verify_server_cert, if configuration says so, as spider _can_ configure an ssl connection * memory leak in embedded test-connect
20 lines
432 B
Text
20 lines
432 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
connection slave;
|
|
include/stop_slave.inc
|
|
CHANGE MASTER TO MASTER_USE_GTID=NO;
|
|
include/start_slave.inc
|
|
connection master;
|
|
create table t1 (n int not null auto_increment primary key);
|
|
insert into t1 values(NULL);
|
|
insert into t1 values(2);
|
|
connection slave;
|
|
select n from t1;
|
|
n
|
|
1
|
|
2
|
|
connection master;
|
|
drop table t1;
|
|
connection slave;
|
|
include/wait_for_slave_to_start.inc
|
|
include/rpl_end.inc
|