summaryrefslogtreecommitdiffstats
path: root/storage/rocksdb/mysql-test/rocksdb_rpl/r/rpl_gtid_rocksdb_sys_header.result
blob: b2703ee0cbb47313172d7e3cd8b6a185eb76d512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include/master-slave.inc
Warnings:
Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
Note	####	Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
[connection master]
create table t1 (a int primary key) engine=rocksdb;
insert into t1 values(1);
SET GLOBAL debug = '+d,crash_before_writing_xid';
insert into t1 values(2);
ERROR HY000: Lost connection to MySQL server during query
include/rpl_reconnect.inc
SET GLOBAL debug = ``;
include/start_slave.inc
RocksDB: Last MySQL Gtid master_uuid:2
drop table t1;
include/rpl_end.inc