mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
b2865a437f
1. Special mode to search in error logs: if SEARCH_RANGE is not set, the file is considered an error log and the search is performed since the last CURRENT_TEST: line 2. Number of matches is printed too. "FOUND 5 /foo/ in bar". Use greedy .* at the end of the pattern if number of matches isn't stable. If nothing is found it's still "NOT FOUND", not "FOUND 0". 3. SEARCH_ABORT specifies the prefix of the output. Can be "NOT FOUND" or "FOUND" as before, but also "FOUND 5 " if needed.
78 lines
2.6 KiB
Text
78 lines
2.6 KiB
Text
#################
|
|
# Initialization
|
|
#################
|
|
include/rpl_init.inc [topology=1->2]
|
|
connection server_2;
|
|
include/stop_slave.inc
|
|
#####################################################
|
|
# Part 1: unencrypted master
|
|
#####################################################
|
|
connection server_1;
|
|
CREATE TABLE table1_no_encryption (
|
|
pk INT AUTO_INCREMENT PRIMARY KEY,
|
|
ts TIMESTAMP NULL,
|
|
b BLOB
|
|
) ENGINE=MyISAM;
|
|
INSERT INTO table1_no_encryption VALUES (NULL,NOW(),'data_no_encryption');
|
|
INSERT INTO table1_no_encryption SELECT NULL,NOW(),b FROM table1_no_encryption;
|
|
FLUSH BINARY LOGS;
|
|
SET binlog_format=ROW;
|
|
INSERT INTO table1_no_encryption SELECT NULL,NOW(),b FROM table1_no_encryption;
|
|
INSERT INTO table1_no_encryption SELECT NULL,NOW(),b FROM table1_no_encryption;
|
|
FOUND 11 /table1_no_encryption/ in master-bin.0*
|
|
#####################################################
|
|
# Part 2: restart master, now with binlog encryption
|
|
#####################################################
|
|
connection default;
|
|
connection server_1;
|
|
CREATE TABLE table2_to_encrypt (
|
|
pk INT AUTO_INCREMENT PRIMARY KEY,
|
|
ts TIMESTAMP NULL,
|
|
b BLOB
|
|
) ENGINE=MyISAM;
|
|
INSERT INTO table2_to_encrypt VALUES (NULL,NOW(),'data_to_encrypt');
|
|
INSERT INTO table2_to_encrypt SELECT NULL,NOW(),b FROM table2_to_encrypt;
|
|
FLUSH BINARY LOGS;
|
|
SET binlog_format=ROW;
|
|
INSERT INTO table2_to_encrypt SELECT NULL,NOW(),b FROM table2_to_encrypt;
|
|
INSERT INTO table2_to_encrypt SELECT NULL,NOW(),b FROM table2_to_encrypt;
|
|
NOT FOUND /table2_to_encrypt/ in master-bin.0*
|
|
#####################################################
|
|
# Part 3: restart master again without encryption
|
|
#####################################################
|
|
connection default;
|
|
connection server_1;
|
|
CREATE TABLE table3_no_encryption (
|
|
pk INT AUTO_INCREMENT PRIMARY KEY,
|
|
ts TIMESTAMP NULL,
|
|
b BLOB
|
|
) ENGINE=MyISAM;
|
|
INSERT INTO table3_no_encryption VALUES (NULL,NOW(),'data_no_encryption');
|
|
INSERT INTO table3_no_encryption SELECT NULL,NOW(),b FROM table3_no_encryption;
|
|
INSERT INTO table3_no_encryption SELECT NULL,NOW(),b FROM table3_no_encryption;
|
|
#####################################################
|
|
# Check: resume replication and check that it works
|
|
#####################################################
|
|
connection server_2;
|
|
include/start_slave.inc
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
table1_no_encryption
|
|
table2_to_encrypt
|
|
table3_no_encryption
|
|
##########
|
|
# Cleanup
|
|
##########
|
|
connection server_1;
|
|
SELECT COUNT(*) FROM table1_no_encryption;
|
|
COUNT(*)
|
|
8
|
|
SELECT COUNT(*) FROM table2_to_encrypt;
|
|
COUNT(*)
|
|
8
|
|
SELECT COUNT(*) FROM table3_no_encryption;
|
|
COUNT(*)
|
|
4
|
|
DROP TABLE table1_no_encryption, table2_to_encrypt, table3_no_encryption;
|
|
connection server_2;
|
|
include/rpl_end.inc
|