12 lines
666 B
Plaintext
12 lines
666 B
Plaintext
include/group_replication.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 server1]
|
|
SET @debug_saved= @@GLOBAL.DEBUG;
|
|
SET @@GLOBAL.DEBUG= '+d,test_basic_CRUD_operations_sql_service_interface';
|
|
CREATE TABLE t5(i INT PRIMARY KEY NOT NULL);
|
|
SET @@GLOBAL.DEBUG= @debug_saved;
|
|
DROP TABLE t5;
|
|
include/group_replication_end.inc
|