EVOLUTION-MANAGER
Edit File: backup_master_state.result
### Create backup dir 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] ### Check for settings SELECT @@gtid_mode; @@gtid_mode OFF ### Generate some binlog events CREATE TABLE t1(a INT) ENGINE=TokuDB; DROP TABLE t1; ### Master backup include/filter_file.inc ### tokubackup_binlog_info content: filename: ####, position: ####, gtid_mode: OFF, GTID of last change: ### Delete backup dir ### Create backup dir ### GTID-mode on include/rpl_set_gtid_mode.inc ### Check for settings SELECT @@gtid_mode; @@gtid_mode ON ### Generate some binlog events CREATE TABLE t1(a INT) ENGINE=TokuDB; DROP TABLE t1; ### Master backup include/filter_file.inc ### tokubackup_binlog_info content: filename: ####, position: ####, gtid_mode: ON, GTID of last change: ##### ### Delete backup dir ### GTID-mode off include/rpl_set_gtid_mode.inc include/rpl_end.inc