summaryrefslogtreecommitdiffstats
path: root/storage/rocksdb/mysql-test/rocksdb_rpl/r/rpl_rocksdb_snapshot_without_gtid.result
blob: 57c1d0822c99788da3347b467541f9415efe2fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
FLUSH LOGS;
insert into t1 values(1);
insert into t1 values(2);
FLUSH LOGS;
START TRANSACTION WITH CONSISTENT ROCKSDB SNAPSHOT;
File	Position	Gtid_executed
master-bin.000003	120	
drop table t1;
include/rpl_end.inc