include/master-slave.incWarnings: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]drop table if exists t;
show variables like 'tokudb_rpl%';Variable_name Valuetokudb_rpl_check_readonly ONtokudb_rpl_lookup_rows ONtokudb_rpl_lookup_rows_delay 0tokudb_rpl_unique_checks OFFtokudb_rpl_unique_checks_delay 5000
create table t (a bigint not null, primary key(a)) engine=tokudb;select unix_timestamp() into @tstart;insert into t values (1);insert into t values (2),(3);insert into t values (4);select unix_timestamp()-@tstart <= 10;unix_timestamp()-@tstart <= 100include/diff_tables.inc [master:test.t, slave:test.t]drop table if exists t;include/rpl_end.inc