polardbxengine/mysql-test/suite/rpl_nogtid/r/rpl_gtid_create_select.result

20 lines
1022 B
Plaintext

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]
---- GTID_NEXT=AUTOMATIC -----
include/save_binlog_position.inc
SET @@SESSION.GTID_NEXT = 'ANONYMOUS';
CREATE TABLE t1 (a INT) SELECT 1;
include/assert_binlog_events.inc [Anonymous_Gtid # !Q(CREATE.*) # Anonymous_Gtid # !Begin # Table_map # Write_rows # !Commit]
---- GTID_NEXT=non-automatic -----
include/save_binlog_position.inc
SET @@SESSION.GTID_NEXT = 'AUTOMATIC';
CREATE TABLE t2 (a INT) SELECT 1;
include/assert_binlog_events.inc [Anonymous_Gtid # !Q(CREATE.*) # Anonymous_Gtid # !Begin # Table_map # Write_rows # !Commit]
---- Clean up ----
DROP TABLE t1;
DROP TABLE t2;
include/rpl_end.inc