summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/rpl/r/rpl_tokudb_commit_after_flush.result
blob: 2aeef4204f5bbbda1ef62b4f7319ca37628e375f (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) ENGINE=tokudb;
begin;
insert into t1 values(1);
flush tables with read lock;
commit;
include/sync_slave_sql_with_master.inc
unlock tables;
drop table t1;
include/sync_slave_sql_with_master.inc
include/rpl_end.inc